aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-13 22:04:02 -0700
committerPaul Eggert2011-04-13 22:04:02 -0700
commita7ca3326c4740ed3ed118b794d35d235de49f346 (patch)
tree5d38e0eac8e839c84a4ccb6e8a07c3c7858fff54 /src/data.c
parente87b6180b08c60a256dd8557945321ce2354a3a9 (diff)
downloademacs-a7ca3326c4740ed3ed118b794d35d235de49f346.tar.gz
emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.zip
Undo the DEFUN->DEFUE change.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c84
1 files changed, 42 insertions, 42 deletions
diff --git a/src/data.c b/src/data.c
index ca246b60dd4..956ff3700f2 100644
--- a/src/data.c
+++ b/src/data.c
@@ -462,7 +462,7 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0,
462 462
463/* Extract and set components of lists */ 463/* Extract and set components of lists */
464 464
465DEFUE ("car", Fcar, Scar, 1, 1, 0, 465DEFUN ("car", Fcar, Scar, 1, 1, 0,
466 doc: /* Return the car of LIST. If arg is nil, return nil. 466 doc: /* Return the car of LIST. If arg is nil, return nil.
467Error if arg is not nil and not a cons cell. See also `car-safe'. 467Error if arg is not nil and not a cons cell. See also `car-safe'.
468 468
@@ -473,14 +473,14 @@ Lisp concepts such as car, cdr, cons cell and list. */)
473 return CAR (list); 473 return CAR (list);
474} 474}
475 475
476DEFUE ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0, 476DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
477 doc: /* Return the car of OBJECT if it is a cons cell, or else nil. */) 477 doc: /* Return the car of OBJECT if it is a cons cell, or else nil. */)
478 (Lisp_Object object) 478 (Lisp_Object object)
479{ 479{
480 return CAR_SAFE (object); 480 return CAR_SAFE (object);
481} 481}
482 482
483DEFUE ("cdr", Fcdr, Scdr, 1, 1, 0, 483DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
484 doc: /* Return the cdr of LIST. If arg is nil, return nil. 484 doc: /* Return the cdr of LIST. If arg is nil, return nil.
485Error if arg is not nil and not a cons cell. See also `cdr-safe'. 485Error if arg is not nil and not a cons cell. See also `cdr-safe'.
486 486
@@ -491,14 +491,14 @@ Lisp concepts such as cdr, car, cons cell and list. */)
491 return CDR (list); 491 return CDR (list);
492} 492}
493 493
494DEFUE ("cdr-safe", Fcdr_safe, Scdr_safe, 1, 1, 0, 494DEFUN ("cdr-safe", Fcdr_safe, Scdr_safe, 1, 1, 0,
495 doc: /* Return the cdr of OBJECT if it is a cons cell, or else nil. */) 495 doc: /* Return the cdr of OBJECT if it is a cons cell, or else nil. */)
496 (Lisp_Object object) 496 (Lisp_Object object)
497{ 497{
498 return CDR_SAFE (object); 498 return CDR_SAFE (object);
499} 499}
500 500
501DEFUE ("setcar", Fsetcar, Ssetcar, 2, 2, 0, 501DEFUN ("setcar", Fsetcar, Ssetcar, 2, 2, 0,
502 doc: /* Set the car of CELL to be NEWCAR. Returns NEWCAR. */) 502 doc: /* Set the car of CELL to be NEWCAR. Returns NEWCAR. */)
503 (register Lisp_Object cell, Lisp_Object newcar) 503 (register Lisp_Object cell, Lisp_Object newcar)
504{ 504{
@@ -508,7 +508,7 @@ DEFUE ("setcar", Fsetcar, Ssetcar, 2, 2, 0,
508 return newcar; 508 return newcar;
509} 509}
510 510
511DEFUE ("setcdr", Fsetcdr, Ssetcdr, 2, 2, 0, 511DEFUN ("setcdr", Fsetcdr, Ssetcdr, 2, 2, 0,
512 doc: /* Set the cdr of CELL to be NEWCDR. Returns NEWCDR. */) 512 doc: /* Set the cdr of CELL to be NEWCDR. Returns NEWCDR. */)
513 (register Lisp_Object cell, Lisp_Object newcdr) 513 (register Lisp_Object cell, Lisp_Object newcdr)
514{ 514{
@@ -520,7 +520,7 @@ DEFUE ("setcdr", Fsetcdr, Ssetcdr, 2, 2, 0,
520 520
521/* Extract and set components of symbols */ 521/* Extract and set components of symbols */
522 522
523DEFUE ("boundp", Fboundp, Sboundp, 1, 1, 0, 523DEFUN ("boundp", Fboundp, Sboundp, 1, 1, 0,
524 doc: /* Return t if SYMBOL's value is not void. */) 524 doc: /* Return t if SYMBOL's value is not void. */)
525 (register Lisp_Object symbol) 525 (register Lisp_Object symbol)
526{ 526{
@@ -558,7 +558,7 @@ DEFUE ("boundp", Fboundp, Sboundp, 1, 1, 0,
558 return (EQ (valcontents, Qunbound) ? Qnil : Qt); 558 return (EQ (valcontents, Qunbound) ? Qnil : Qt);
559} 559}
560 560
561DEFUE ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, 561DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0,
562 doc: /* Return t if SYMBOL's function definition is not void. */) 562 doc: /* Return t if SYMBOL's function definition is not void. */)
563 (register Lisp_Object symbol) 563 (register Lisp_Object symbol)
564{ 564{
@@ -590,7 +590,7 @@ Return SYMBOL. */)
590 return symbol; 590 return symbol;
591} 591}
592 592
593DEFUE ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0, 593DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0,
594 doc: /* Return SYMBOL's function definition. Error if that is void. */) 594 doc: /* Return SYMBOL's function definition. Error if that is void. */)
595 (register Lisp_Object symbol) 595 (register Lisp_Object symbol)
596{ 596{
@@ -608,7 +608,7 @@ DEFUN ("symbol-plist", Fsymbol_plist, Ssymbol_plist, 1, 1, 0,
608 return XSYMBOL (symbol)->plist; 608 return XSYMBOL (symbol)->plist;
609} 609}
610 610
611DEFUE ("symbol-name", Fsymbol_name, Ssymbol_name, 1, 1, 0, 611DEFUN ("symbol-name", Fsymbol_name, Ssymbol_name, 1, 1, 0,
612 doc: /* Return SYMBOL's name, a string. */) 612 doc: /* Return SYMBOL's name, a string. */)
613 (register Lisp_Object symbol) 613 (register Lisp_Object symbol)
614{ 614{
@@ -619,7 +619,7 @@ DEFUE ("symbol-name", Fsymbol_name, Ssymbol_name, 1, 1, 0,
619 return name; 619 return name;
620} 620}
621 621
622DEFUE ("fset", Ffset, Sfset, 2, 2, 0, 622DEFUN ("fset", Ffset, Sfset, 2, 2, 0,
623 doc: /* Set SYMBOL's function definition to DEFINITION, and return DEFINITION. */) 623 doc: /* Set SYMBOL's function definition to DEFINITION, and return DEFINITION. */)
624 (register Lisp_Object symbol, Lisp_Object definition) 624 (register Lisp_Object symbol, Lisp_Object definition)
625{ 625{
@@ -706,7 +706,7 @@ SUBR must be a built-in function. */)
706 return make_string (name, strlen (name)); 706 return make_string (name, strlen (name));
707} 707}
708 708
709DEFUE ("interactive-form", Finteractive_form, Sinteractive_form, 1, 1, 0, 709DEFUN ("interactive-form", Finteractive_form, Sinteractive_form, 1, 1, 0,
710 doc: /* Return the interactive form of CMD or nil if none. 710 doc: /* Return the interactive form of CMD or nil if none.
711If CMD is not a command, the return value is nil. 711If CMD is not a command, the return value is nil.
712Value, if non-nil, is a list \(interactive SPEC). */) 712Value, if non-nil, is a list \(interactive SPEC). */)
@@ -1049,7 +1049,7 @@ find_symbol_value (Lisp_Object symbol)
1049 } 1049 }
1050} 1050}
1051 1051
1052DEFUE ("symbol-value", Fsymbol_value, Ssymbol_value, 1, 1, 0, 1052DEFUN ("symbol-value", Fsymbol_value, Ssymbol_value, 1, 1, 0,
1053 doc: /* Return SYMBOL's value. Error if that is void. */) 1053 doc: /* Return SYMBOL's value. Error if that is void. */)
1054 (Lisp_Object symbol) 1054 (Lisp_Object symbol)
1055{ 1055{
@@ -1062,7 +1062,7 @@ DEFUE ("symbol-value", Fsymbol_value, Ssymbol_value, 1, 1, 0,
1062 xsignal1 (Qvoid_variable, symbol); 1062 xsignal1 (Qvoid_variable, symbol);
1063} 1063}
1064 1064
1065DEFUE ("set", Fset, Sset, 2, 2, 0, 1065DEFUN ("set", Fset, Sset, 2, 2, 0,
1066 doc: /* Set SYMBOL's value to NEWVAL, and return NEWVAL. */) 1066 doc: /* Set SYMBOL's value to NEWVAL, and return NEWVAL. */)
1067 (register Lisp_Object symbol, Lisp_Object newval) 1067 (register Lisp_Object symbol, Lisp_Object newval)
1068{ 1068{
@@ -1308,7 +1308,7 @@ default_value (Lisp_Object symbol)
1308 } 1308 }
1309} 1309}
1310 1310
1311DEFUE ("default-boundp", Fdefault_boundp, Sdefault_boundp, 1, 1, 0, 1311DEFUN ("default-boundp", Fdefault_boundp, Sdefault_boundp, 1, 1, 0,
1312 doc: /* Return t if SYMBOL has a non-void default value. 1312 doc: /* Return t if SYMBOL has a non-void default value.
1313This is the value that is seen in buffers that do not have their own values 1313This is the value that is seen in buffers that do not have their own values
1314for this variable. */) 1314for this variable. */)
@@ -1320,7 +1320,7 @@ for this variable. */)
1320 return (EQ (value, Qunbound) ? Qnil : Qt); 1320 return (EQ (value, Qunbound) ? Qnil : Qt);
1321} 1321}
1322 1322
1323DEFUE ("default-value", Fdefault_value, Sdefault_value, 1, 1, 0, 1323DEFUN ("default-value", Fdefault_value, Sdefault_value, 1, 1, 0,
1324 doc: /* Return SYMBOL's default value. 1324 doc: /* Return SYMBOL's default value.
1325This is the value that is seen in buffers that do not have their own values 1325This is the value that is seen in buffers that do not have their own values
1326for this variable. The default value is meaningful for variables with 1326for this variable. The default value is meaningful for variables with
@@ -1336,7 +1336,7 @@ local bindings in certain buffers. */)
1336 xsignal1 (Qvoid_variable, symbol); 1336 xsignal1 (Qvoid_variable, symbol);
1337} 1337}
1338 1338
1339DEFUE ("set-default", Fset_default, Sset_default, 2, 2, 0, 1339DEFUN ("set-default", Fset_default, Sset_default, 2, 2, 0,
1340 doc: /* Set SYMBOL's default value to VALUE. SYMBOL and VALUE are evaluated. 1340 doc: /* Set SYMBOL's default value to VALUE. SYMBOL and VALUE are evaluated.
1341The default value is seen in buffers that do not have their own values 1341The default value is seen in buffers that do not have their own values
1342for this variable. */) 1342for this variable. */)
@@ -1479,7 +1479,7 @@ make_blv (struct Lisp_Symbol *sym, int forwarded, union Lisp_Val_Fwd valcontents
1479 return blv; 1479 return blv;
1480} 1480}
1481 1481
1482DEFUE ("make-variable-buffer-local", Fmake_variable_buffer_local, 1482DEFUN ("make-variable-buffer-local", Fmake_variable_buffer_local,
1483 Smake_variable_buffer_local, 1, 1, "vMake Variable Buffer Local: ", 1483 Smake_variable_buffer_local, 1, 1, "vMake Variable Buffer Local: ",
1484 doc: /* Make VARIABLE become buffer-local whenever it is set. 1484 doc: /* Make VARIABLE become buffer-local whenever it is set.
1485At any time, the value for the current buffer is in effect, 1485At any time, the value for the current buffer is in effect,
@@ -1550,7 +1550,7 @@ The function `default-value' gets the default value and `set-default' sets it.
1550 return variable; 1550 return variable;
1551} 1551}
1552 1552
1553DEFUE ("make-local-variable", Fmake_local_variable, Smake_local_variable, 1553DEFUN ("make-local-variable", Fmake_local_variable, Smake_local_variable,
1554 1, 1, "vMake Local Variable: ", 1554 1, 1, "vMake Local Variable: ",
1555 doc: /* Make VARIABLE have a separate value in the current buffer. 1555 doc: /* Make VARIABLE have a separate value in the current buffer.
1556Other buffers will continue to share a common default value. 1556Other buffers will continue to share a common default value.
@@ -1810,7 +1810,7 @@ frame-local bindings). */)
1810 return variable; 1810 return variable;
1811} 1811}
1812 1812
1813DEFUE ("local-variable-p", Flocal_variable_p, Slocal_variable_p, 1813DEFUN ("local-variable-p", Flocal_variable_p, Slocal_variable_p,
1814 1, 2, 0, 1814 1, 2, 0,
1815 doc: /* Non-nil if VARIABLE has a local binding in buffer BUFFER. 1815 doc: /* Non-nil if VARIABLE has a local binding in buffer BUFFER.
1816BUFFER defaults to the current buffer. */) 1816BUFFER defaults to the current buffer. */)
@@ -1955,7 +1955,7 @@ If the current binding is global (the default), the value is nil. */)
1955#if 0 1955#if 0
1956extern struct terminal *get_terminal (Lisp_Object display, int); 1956extern struct terminal *get_terminal (Lisp_Object display, int);
1957 1957
1958DEFUE ("terminal-local-value", Fterminal_local_value, 1958DEFUN ("terminal-local-value", Fterminal_local_value,
1959 Sterminal_local_value, 2, 2, 0, 1959 Sterminal_local_value, 2, 2, 0,
1960 doc: /* Return the terminal-local value of SYMBOL on TERMINAL. 1960 doc: /* Return the terminal-local value of SYMBOL on TERMINAL.
1961If SYMBOL is not a terminal-local variable, then return its normal 1961If SYMBOL is not a terminal-local variable, then return its normal
@@ -1973,7 +1973,7 @@ selected frame's terminal device). */)
1973 return result; 1973 return result;
1974} 1974}
1975 1975
1976DEFUE ("set-terminal-local-value", Fset_terminal_local_value, 1976DEFUN ("set-terminal-local-value", Fset_terminal_local_value,
1977 Sset_terminal_local_value, 3, 3, 0, 1977 Sset_terminal_local_value, 3, 3, 0,
1978 doc: /* Set the terminal-local binding of SYMBOL on TERMINAL to VALUE. 1978 doc: /* Set the terminal-local binding of SYMBOL on TERMINAL to VALUE.
1979If VARIABLE is not a terminal-local variable, then set its normal 1979If VARIABLE is not a terminal-local variable, then set its normal
@@ -2026,7 +2026,7 @@ indirect_function (register Lisp_Object object)
2026 return hare; 2026 return hare;
2027} 2027}
2028 2028
2029DEFUE ("indirect-function", Findirect_function, Sindirect_function, 1, 2, 0, 2029DEFUN ("indirect-function", Findirect_function, Sindirect_function, 1, 2, 0,
2030 doc: /* Return the function at the end of OBJECT's function chain. 2030 doc: /* Return the function at the end of OBJECT's function chain.
2031If OBJECT is not a symbol, just return it. Otherwise, follow all 2031If OBJECT is not a symbol, just return it. Otherwise, follow all
2032function indirections to find the final function binding and return it. 2032function indirections to find the final function binding and return it.
@@ -2054,7 +2054,7 @@ function chain of symbols. */)
2054 2054
2055/* Extract and set vector and string elements */ 2055/* Extract and set vector and string elements */
2056 2056
2057DEFUE ("aref", Faref, Saref, 2, 2, 0, 2057DEFUN ("aref", Faref, Saref, 2, 2, 0,
2058 doc: /* Return the element of ARRAY at index IDX. 2058 doc: /* Return the element of ARRAY at index IDX.
2059ARRAY may be a vector, a string, a char-table, a bool-vector, 2059ARRAY may be a vector, a string, a char-table, a bool-vector,
2060or a byte-code object. IDX starts at 0. */) 2060or a byte-code object. IDX starts at 0. */)
@@ -2109,7 +2109,7 @@ or a byte-code object. IDX starts at 0. */)
2109 } 2109 }
2110} 2110}
2111 2111
2112DEFUE ("aset", Faset, Saset, 3, 3, 0, 2112DEFUN ("aset", Faset, Saset, 3, 3, 0,
2113 doc: /* Store into the element of ARRAY at index IDX the value NEWELT. 2113 doc: /* Store into the element of ARRAY at index IDX the value NEWELT.
2114Return NEWELT. ARRAY may be a vector, a string, a char-table or a 2114Return NEWELT. ARRAY may be a vector, a string, a char-table or a
2115bool-vector. IDX starts at 0. */) 2115bool-vector. IDX starts at 0. */)
@@ -2272,21 +2272,21 @@ DEFUN ("=", Feqlsign, Seqlsign, 2, 2, 0,
2272 return arithcompare (num1, num2, equal); 2272 return arithcompare (num1, num2, equal);
2273} 2273}
2274 2274
2275DEFUE ("<", Flss, Slss, 2, 2, 0, 2275DEFUN ("<", Flss, Slss, 2, 2, 0,
2276 doc: /* Return t if first arg is less than second arg. Both must be numbers or markers. */) 2276 doc: /* Return t if first arg is less than second arg. Both must be numbers or markers. */)
2277 (register Lisp_Object num1, Lisp_Object num2) 2277 (register Lisp_Object num1, Lisp_Object num2)
2278{ 2278{
2279 return arithcompare (num1, num2, less); 2279 return arithcompare (num1, num2, less);
2280} 2280}
2281 2281
2282DEFUE (">", Fgtr, Sgtr, 2, 2, 0, 2282DEFUN (">", Fgtr, Sgtr, 2, 2, 0,
2283 doc: /* Return t if first arg is greater than second arg. Both must be numbers or markers. */) 2283 doc: /* Return t if first arg is greater than second arg. Both must be numbers or markers. */)
2284 (register Lisp_Object num1, Lisp_Object num2) 2284 (register Lisp_Object num1, Lisp_Object num2)
2285{ 2285{
2286 return arithcompare (num1, num2, grtr); 2286 return arithcompare (num1, num2, grtr);
2287} 2287}
2288 2288
2289DEFUE ("<=", Fleq, Sleq, 2, 2, 0, 2289DEFUN ("<=", Fleq, Sleq, 2, 2, 0,
2290 doc: /* Return t if first arg is less than or equal to second arg. 2290 doc: /* Return t if first arg is less than or equal to second arg.
2291Both must be numbers or markers. */) 2291Both must be numbers or markers. */)
2292 (register Lisp_Object num1, Lisp_Object num2) 2292 (register Lisp_Object num1, Lisp_Object num2)
@@ -2294,7 +2294,7 @@ Both must be numbers or markers. */)
2294 return arithcompare (num1, num2, less_or_equal); 2294 return arithcompare (num1, num2, less_or_equal);
2295} 2295}
2296 2296
2297DEFUE (">=", Fgeq, Sgeq, 2, 2, 0, 2297DEFUN (">=", Fgeq, Sgeq, 2, 2, 0,
2298 doc: /* Return t if first arg is greater than or equal to second arg. 2298 doc: /* Return t if first arg is greater than or equal to second arg.
2299Both must be numbers or markers. */) 2299Both must be numbers or markers. */)
2300 (register Lisp_Object num1, Lisp_Object num2) 2300 (register Lisp_Object num1, Lisp_Object num2)
@@ -2309,7 +2309,7 @@ DEFUN ("/=", Fneq, Sneq, 2, 2, 0,
2309 return arithcompare (num1, num2, notequal); 2309 return arithcompare (num1, num2, notequal);
2310} 2310}
2311 2311
2312DEFUE ("zerop", Fzerop, Szerop, 1, 1, 0, 2312DEFUN ("zerop", Fzerop, Szerop, 1, 1, 0,
2313 doc: /* Return t if NUMBER is zero. */) 2313 doc: /* Return t if NUMBER is zero. */)
2314 (register Lisp_Object number) 2314 (register Lisp_Object number)
2315{ 2315{
@@ -2356,7 +2356,7 @@ cons_to_long (Lisp_Object c)
2356 return ((XINT (top) << 16) | XINT (bot)); 2356 return ((XINT (top) << 16) | XINT (bot));
2357} 2357}
2358 2358
2359DEFUE ("number-to-string", Fnumber_to_string, Snumber_to_string, 1, 1, 0, 2359DEFUN ("number-to-string", Fnumber_to_string, Snumber_to_string, 1, 1, 0,
2360 doc: /* Return the decimal representation of NUMBER as a string. 2360 doc: /* Return the decimal representation of NUMBER as a string.
2361Uses a minus sign if negative. 2361Uses a minus sign if negative.
2362NUMBER may be an integer or a floating point number. */) 2362NUMBER may be an integer or a floating point number. */)
@@ -2403,7 +2403,7 @@ digit_to_number (int character, int base)
2403 return digit; 2403 return digit;
2404} 2404}
2405 2405
2406DEFUE ("string-to-number", Fstring_to_number, Sstring_to_number, 1, 2, 0, 2406DEFUN ("string-to-number", Fstring_to_number, Sstring_to_number, 1, 2, 0,
2407 doc: /* Parse STRING as a decimal number and return the number. 2407 doc: /* Parse STRING as a decimal number and return the number.
2408This parses both integers and floating point numbers. 2408This parses both integers and floating point numbers.
2409It ignores leading spaces and tabs, and all trailing chars. 2409It ignores leading spaces and tabs, and all trailing chars.
@@ -2626,7 +2626,7 @@ float_arith_driver (double accum, register size_t argnum, enum arithop code,
2626} 2626}
2627 2627
2628 2628
2629DEFUE ("+", Fplus, Splus, 0, MANY, 0, 2629DEFUN ("+", Fplus, Splus, 0, MANY, 0,
2630 doc: /* Return sum of any number of arguments, which are numbers or markers. 2630 doc: /* Return sum of any number of arguments, which are numbers or markers.
2631usage: (+ &rest NUMBERS-OR-MARKERS) */) 2631usage: (+ &rest NUMBERS-OR-MARKERS) */)
2632 (size_t nargs, Lisp_Object *args) 2632 (size_t nargs, Lisp_Object *args)
@@ -2634,7 +2634,7 @@ usage: (+ &rest NUMBERS-OR-MARKERS) */)
2634 return arith_driver (Aadd, nargs, args); 2634 return arith_driver (Aadd, nargs, args);
2635} 2635}
2636 2636
2637DEFUE ("-", Fminus, Sminus, 0, MANY, 0, 2637DEFUN ("-", Fminus, Sminus, 0, MANY, 0,
2638 doc: /* Negate number or subtract numbers or markers and return the result. 2638 doc: /* Negate number or subtract numbers or markers and return the result.
2639With one arg, negates it. With more than one arg, 2639With one arg, negates it. With more than one arg,
2640subtracts all but the first from the first. 2640subtracts all but the first from the first.
@@ -2644,7 +2644,7 @@ usage: (- &optional NUMBER-OR-MARKER &rest MORE-NUMBERS-OR-MARKERS) */)
2644 return arith_driver (Asub, nargs, args); 2644 return arith_driver (Asub, nargs, args);
2645} 2645}
2646 2646
2647DEFUE ("*", Ftimes, Stimes, 0, MANY, 0, 2647DEFUN ("*", Ftimes, Stimes, 0, MANY, 0,
2648 doc: /* Return product of any number of arguments, which are numbers or markers. 2648 doc: /* Return product of any number of arguments, which are numbers or markers.
2649usage: (* &rest NUMBERS-OR-MARKERS) */) 2649usage: (* &rest NUMBERS-OR-MARKERS) */)
2650 (size_t nargs, Lisp_Object *args) 2650 (size_t nargs, Lisp_Object *args)
@@ -2652,7 +2652,7 @@ usage: (* &rest NUMBERS-OR-MARKERS) */)
2652 return arith_driver (Amult, nargs, args); 2652 return arith_driver (Amult, nargs, args);
2653} 2653}
2654 2654
2655DEFUE ("/", Fquo, Squo, 2, MANY, 0, 2655DEFUN ("/", Fquo, Squo, 2, MANY, 0,
2656 doc: /* Return first argument divided by all the remaining arguments. 2656 doc: /* Return first argument divided by all the remaining arguments.
2657The arguments must be numbers or markers. 2657The arguments must be numbers or markers.
2658usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */) 2658usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */)
@@ -2665,7 +2665,7 @@ usage: (/ DIVIDEND DIVISOR &rest DIVISORS) */)
2665 return arith_driver (Adiv, nargs, args); 2665 return arith_driver (Adiv, nargs, args);
2666} 2666}
2667 2667
2668DEFUE ("%", Frem, Srem, 2, 2, 0, 2668DEFUN ("%", Frem, Srem, 2, 2, 0,
2669 doc: /* Return remainder of X divided by Y. 2669 doc: /* Return remainder of X divided by Y.
2670Both must be integers or markers. */) 2670Both must be integers or markers. */)
2671 (register Lisp_Object x, Lisp_Object y) 2671 (register Lisp_Object x, Lisp_Object y)
@@ -2736,7 +2736,7 @@ Both X and Y must be numbers or markers. */)
2736 return val; 2736 return val;
2737} 2737}
2738 2738
2739DEFUE ("max", Fmax, Smax, 1, MANY, 0, 2739DEFUN ("max", Fmax, Smax, 1, MANY, 0,
2740 doc: /* Return largest of all the arguments (which must be numbers or markers). 2740 doc: /* Return largest of all the arguments (which must be numbers or markers).
2741The value is always a number; markers are converted to numbers. 2741The value is always a number; markers are converted to numbers.
2742usage: (max NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2742usage: (max NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
@@ -2745,7 +2745,7 @@ usage: (max NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
2745 return arith_driver (Amax, nargs, args); 2745 return arith_driver (Amax, nargs, args);
2746} 2746}
2747 2747
2748DEFUE ("min", Fmin, Smin, 1, MANY, 0, 2748DEFUN ("min", Fmin, Smin, 1, MANY, 0,
2749 doc: /* Return smallest of all the arguments (which must be numbers or markers). 2749 doc: /* Return smallest of all the arguments (which must be numbers or markers).
2750The value is always a number; markers are converted to numbers. 2750The value is always a number; markers are converted to numbers.
2751usage: (min NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */) 2751usage: (min NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS) */)
@@ -2825,7 +2825,7 @@ In this case, zeros are shifted in on the left. */)
2825 return val; 2825 return val;
2826} 2826}
2827 2827
2828DEFUE ("1+", Fadd1, Sadd1, 1, 1, 0, 2828DEFUN ("1+", Fadd1, Sadd1, 1, 1, 0,
2829 doc: /* Return NUMBER plus one. NUMBER may be a number or a marker. 2829 doc: /* Return NUMBER plus one. NUMBER may be a number or a marker.
2830Markers are converted to integers. */) 2830Markers are converted to integers. */)
2831 (register Lisp_Object number) 2831 (register Lisp_Object number)
@@ -2839,7 +2839,7 @@ Markers are converted to integers. */)
2839 return number; 2839 return number;
2840} 2840}
2841 2841
2842DEFUE ("1-", Fsub1, Ssub1, 1, 1, 0, 2842DEFUN ("1-", Fsub1, Ssub1, 1, 1, 0,
2843 doc: /* Return NUMBER minus one. NUMBER may be a number or a marker. 2843 doc: /* Return NUMBER minus one. NUMBER may be a number or a marker.
2844Markers are converted to integers. */) 2844Markers are converted to integers. */)
2845 (register Lisp_Object number) 2845 (register Lisp_Object number)
@@ -2862,7 +2862,7 @@ DEFUN ("lognot", Flognot, Slognot, 1, 1, 0,
2862 return number; 2862 return number;
2863} 2863}
2864 2864
2865DEFUE ("byteorder", Fbyteorder, Sbyteorder, 0, 0, 0, 2865DEFUN ("byteorder", Fbyteorder, Sbyteorder, 0, 0, 0,
2866 doc: /* Return the byteorder for the machine. 2866 doc: /* Return the byteorder for the machine.
2867Returns 66 (ASCII uppercase B) for big endian machines or 108 (ASCII 2867Returns 66 (ASCII uppercase B) for big endian machines or 108 (ASCII
2868lowercase l) for small endian machines. */) 2868lowercase l) for small endian machines. */)