Branch: Tag:

2003-04-01

2003-04-01 18:15:58 by Martin Nilsson <mani@lysator.liu.se>

Autodoc fix

Rev: lib/7.2/modules/__default.pmod:1.16
Rev: src/builtin.cmod:1.128
Rev: src/builtin_functions.c:1.481
Rev: src/mapping.c:1.165
Rev: src/modules/Math/module.pmod.in:1.16
Rev: src/modules/_Crypto/cast.c:1.15
Rev: src/modules/_Crypto/crypto.c:1.55
Rev: src/modules/_math/math.c:1.59
Rev: src/modules/files/efuns.c:1.125
Rev: src/modules/files/file.c:1.265
Rev: src/multiset.c:1.70
Rev: src/operators.c:1.173
Rev: src/program.c:1.496
Rev: src/security.c:1.41

2:   || This file is part of Pike. For copyright information see COPYRIGHT.   || Pike is distributed under GPL, LGPL and MPL. See the file COPYING   || for more information. - || $Id: program.c,v 1.495 2003/03/30 17:15:09 mast Exp $ + || $Id: program.c,v 1.496 2003/04/01 18:11:09 nilsson Exp $   */      #include "global.h" - RCSID("$Id: program.c,v 1.495 2003/03/30 17:15:09 mast Exp $"); + RCSID("$Id: program.c,v 1.496 2003/04/01 18:11:09 nilsson Exp $");   #include "program.h"   #include "object.h"   #include "dynamic_buffer.h"
298:    *! @note    *! In Pike 7.2 and later this function can be created implicitly    *! by the compiler using the new syntax: -  *! @code{ -  *! class Foo(int foo) { -  *! int bar; -  *! } -  *! @} +  *! @code +  *! class Foo(int foo) { +  *! int bar; +  *! } +  *! @endcode    *! In the above case an implicit @[lfun::create()] will be created,    *! and it will be equvivalent to: -  *! @code{ -  *! class Foo { -  *! int foo; -  *! int bar; -  *! static void create(int foo) -  *! { -  *! local::foo = foo; -  *! } -  *! } -  *! @} +  *! @code +  *! class Foo { +  *! int foo; +  *! int bar; +  *! static void create(int foo) +  *! { +  *! local::foo = foo; +  *! } +  *! } +  *! @endcode    *!    *! @seealso    *! @[lfun::__INIT()], @[lfun::destroy()]