comparison src/data.c @ 73925:a248fe2d281f

(Flogxor): Fix typo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Sun, 12 Nov 2006 04:50:22 +0000
parents a99be0fe5bd4
children 1734e65f7ada c71725faff1a dbe3f29e61d6
comparison
equal deleted inserted replaced
73924:63fc0820b362 73925:a248fe2d281f
2825 } 2825 }
2826 2826
2827 DEFUN ("logxor", Flogxor, Slogxor, 0, MANY, 0, 2827 DEFUN ("logxor", Flogxor, Slogxor, 0, MANY, 0,
2828 doc: /* Return bitwise-exclusive-or of all the arguments. 2828 doc: /* Return bitwise-exclusive-or of all the arguments.
2829 Arguments may be integers, or markers converted to integers. 2829 Arguments may be integers, or markers converted to integers.
2830 usage: (logxor &rest INTS-OR-MARKERS) */) 2830 usage: (logxor &rest INTS-OR-MARKERS) */)
2831 (nargs, args) 2831 (nargs, args)
2832 int nargs; 2832 int nargs;
2833 Lisp_Object *args; 2833 Lisp_Object *args;
2834 { 2834 {
2835 return arith_driver (Alogxor, nargs, args); 2835 return arith_driver (Alogxor, nargs, args);