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: operators.c,v 1.172 2003/03/14 15:50:46 grubba Exp $ + || $Id: operators.c,v 1.173 2003/04/01 18:11:09 nilsson Exp $   */      #include "global.h"   #include <math.h> - RCSID("$Id: operators.c,v 1.172 2003/03/14 15:50:46 grubba Exp $"); + RCSID("$Id: operators.c,v 1.173 2003/04/01 18:11:09 nilsson Exp $");   #include "interpret.h"   #include "svalue.h"   #include "multiset.h"
212:    *! @endmixed    *!    *! Otherwise if there are more than 2 arguments the result will be: -  *! @code{`+(`+(@[arg1], @[arg2]), @@@[extras])@} +  *! @expr{`+(`+(@[arg1], @[arg2]), @@@[extras])@}    *!    *! @note    *! In Pike 7.0 and earlier the addition order was unspecified.
1077:    *! without arguments.    *!    *! If there are more than two arguments the result will be: -  *! @code{`-(`-(@[arg1], @[arg2]), @@@[extras])@}. +  *! @expr{`-(`-(@[arg1], @[arg2]), @@@[extras])@}.    *!    *! If @[arg1] is an object that overloads @tt{`-()@}, that function will    *! be called with @[arg2] as the single argument.
1452:    *! If there's a single argument, that argument will be returned.    *!    *! If there are more than two arguments, the result will be: -  *! @code{`&(`&(@[arg1], @[arg2]), @@@[extras])@}. +  *! @expr{`&(`&(@[arg1], @[arg2]), @@@[extras])@}.    *!    *! If @[arg1] is an object that has an @[lfun::`&()], that function    *! will be called with @[arg2] as the single argument.
1658:    *! If there's a single argument, that argument will be returned.    *!    *! If there are more than two arguments, the result will be: -  *! @code{`|(`|(@[arg1], @[arg2]), @@@[extras])@}. +  *! @expr{`|(`|(@[arg1], @[arg2]), @@@[extras])@}.    *!    *! If @[arg1] is an object that has an @[lfun::`|()], that function    *! will be called with @[arg2] as the single argument.
1867:    *! If there's a single argument, that argument will be returned.    *!    *! If there are more than two arguments, the result will be: -  *! @code{`^(`^(@[arg1], @[arg2]), @@@[extras])@}. +  *! @expr{`^(`^(@[arg1], @[arg2]), @@@[extras])@}.    *!    *! If @[arg1] is an object that has an @[lfun::`^()], that function    *! will be called with @[arg2] as the single argument.