diff options
| author | Paul Eggert | 2011-04-13 22:04:02 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-13 22:04:02 -0700 |
| commit | a7ca3326c4740ed3ed118b794d35d235de49f346 (patch) | |
| tree | 5d38e0eac8e839c84a4ccb6e8a07c3c7858fff54 /src/eval.c | |
| parent | e87b6180b08c60a256dd8557945321ce2354a3a9 (diff) | |
| download | emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.tar.gz emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.zip | |
Undo the DEFUN->DEFUE change.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/eval.c b/src/eval.c index ef5eb6bdaaf..4d0786fc0d4 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -356,7 +356,7 @@ usage: (cond CLAUSES...) */) | |||
| 356 | return val; | 356 | return val; |
| 357 | } | 357 | } |
| 358 | 358 | ||
| 359 | DEFUE ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0, | 359 | DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0, |
| 360 | doc: /* Eval BODY forms sequentially and return value of last one. | 360 | doc: /* Eval BODY forms sequentially and return value of last one. |
| 361 | usage: (progn BODY...) */) | 361 | usage: (progn BODY...) */) |
| 362 | (Lisp_Object args) | 362 | (Lisp_Object args) |
| @@ -521,7 +521,7 @@ usage: (function ARG) */) | |||
| 521 | } | 521 | } |
| 522 | 522 | ||
| 523 | 523 | ||
| 524 | DEFUE ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0, | 524 | DEFUN ("interactive-p", Finteractive_p, Sinteractive_p, 0, 0, 0, |
| 525 | doc: /* Return t if the containing function was run directly by user input. | 525 | doc: /* Return t if the containing function was run directly by user input. |
| 526 | This means that the function was called with `call-interactively' | 526 | This means that the function was called with `call-interactively' |
| 527 | \(which includes being called as the binding of a key) | 527 | \(which includes being called as the binding of a key) |
| @@ -1327,7 +1327,7 @@ unwind_to_catch (struct catchtag *catch, Lisp_Object value) | |||
| 1327 | _longjmp (catch->jmp, 1); | 1327 | _longjmp (catch->jmp, 1); |
| 1328 | } | 1328 | } |
| 1329 | 1329 | ||
| 1330 | DEFUE ("throw", Fthrow, Sthrow, 2, 2, 0, | 1330 | DEFUN ("throw", Fthrow, Sthrow, 2, 2, 0, |
| 1331 | doc: /* Throw to the catch for TAG and return VALUE from it. | 1331 | doc: /* Throw to the catch for TAG and return VALUE from it. |
| 1332 | Both TAG and VALUE are evalled. */) | 1332 | Both TAG and VALUE are evalled. */) |
| 1333 | (register Lisp_Object tag, Lisp_Object value) | 1333 | (register Lisp_Object tag, Lisp_Object value) |
| @@ -1657,7 +1657,7 @@ static Lisp_Object find_handler_clause (Lisp_Object, Lisp_Object, | |||
| 1657 | static int maybe_call_debugger (Lisp_Object conditions, Lisp_Object sig, | 1657 | static int maybe_call_debugger (Lisp_Object conditions, Lisp_Object sig, |
| 1658 | Lisp_Object data); | 1658 | Lisp_Object data); |
| 1659 | 1659 | ||
| 1660 | DEFUE ("signal", Fsignal, Ssignal, 2, 2, 0, | 1660 | DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0, |
| 1661 | doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA. | 1661 | doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA. |
| 1662 | This function does not return. | 1662 | This function does not return. |
| 1663 | 1663 | ||
| @@ -2041,7 +2041,7 @@ error (const char *m, ...) | |||
| 2041 | va_end (ap); | 2041 | va_end (ap); |
| 2042 | } | 2042 | } |
| 2043 | 2043 | ||
| 2044 | DEFUE ("commandp", Fcommandp, Scommandp, 1, 2, 0, | 2044 | DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0, |
| 2045 | doc: /* Non-nil if FUNCTION makes provisions for interactive calling. | 2045 | doc: /* Non-nil if FUNCTION makes provisions for interactive calling. |
| 2046 | This means it contains a description for how to read arguments to give it. | 2046 | This means it contains a description for how to read arguments to give it. |
| 2047 | The value is nil for an invalid function or a symbol with no function | 2047 | The value is nil for an invalid function or a symbol with no function |
| @@ -2222,7 +2222,7 @@ do_autoload (Lisp_Object fundef, Lisp_Object funname) | |||
| 2222 | } | 2222 | } |
| 2223 | 2223 | ||
| 2224 | 2224 | ||
| 2225 | DEFUE ("eval", Feval, Seval, 1, 2, 0, | 2225 | DEFUN ("eval", Feval, Seval, 1, 2, 0, |
| 2226 | doc: /* Evaluate FORM and return its value. | 2226 | doc: /* Evaluate FORM and return its value. |
| 2227 | If LEXICAL is t, evaluate using lexical scoping. */) | 2227 | If LEXICAL is t, evaluate using lexical scoping. */) |
| 2228 | (Lisp_Object form, Lisp_Object lexical) | 2228 | (Lisp_Object form, Lisp_Object lexical) |
| @@ -2458,7 +2458,7 @@ eval_sub (Lisp_Object form) | |||
| 2458 | return val; | 2458 | return val; |
| 2459 | } | 2459 | } |
| 2460 | 2460 | ||
| 2461 | DEFUE ("apply", Fapply, Sapply, 2, MANY, 0, | 2461 | DEFUN ("apply", Fapply, Sapply, 2, MANY, 0, |
| 2462 | doc: /* Call FUNCTION with our remaining args, using our last arg as list of args. | 2462 | doc: /* Call FUNCTION with our remaining args, using our last arg as list of args. |
| 2463 | Then return the value FUNCTION returns. | 2463 | Then return the value FUNCTION returns. |
| 2464 | Thus, (apply '+ 1 2 '(3 4)) returns 10. | 2464 | Thus, (apply '+ 1 2 '(3 4)) returns 10. |
| @@ -2553,7 +2553,7 @@ funcall_nil (size_t nargs, Lisp_Object *args) | |||
| 2553 | return Qnil; | 2553 | return Qnil; |
| 2554 | } | 2554 | } |
| 2555 | 2555 | ||
| 2556 | DEFUE ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0, | 2556 | DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0, |
| 2557 | doc: /* Run each hook in HOOKS. | 2557 | doc: /* Run each hook in HOOKS. |
| 2558 | Each argument should be a symbol, a hook variable. | 2558 | Each argument should be a symbol, a hook variable. |
| 2559 | These symbols are processed in the order specified. | 2559 | These symbols are processed in the order specified. |
| @@ -2582,7 +2582,7 @@ usage: (run-hooks &rest HOOKS) */) | |||
| 2582 | return Qnil; | 2582 | return Qnil; |
| 2583 | } | 2583 | } |
| 2584 | 2584 | ||
| 2585 | DEFUE ("run-hook-with-args", Frun_hook_with_args, | 2585 | DEFUN ("run-hook-with-args", Frun_hook_with_args, |
| 2586 | Srun_hook_with_args, 1, MANY, 0, | 2586 | Srun_hook_with_args, 1, MANY, 0, |
| 2587 | doc: /* Run HOOK with the specified arguments ARGS. | 2587 | doc: /* Run HOOK with the specified arguments ARGS. |
| 2588 | HOOK should be a symbol, a hook variable. If HOOK has a non-nil | 2588 | HOOK should be a symbol, a hook variable. If HOOK has a non-nil |
| @@ -2628,7 +2628,7 @@ funcall_not (size_t nargs, Lisp_Object *args) | |||
| 2628 | return NILP (Ffuncall (nargs, args)) ? Qt : Qnil; | 2628 | return NILP (Ffuncall (nargs, args)) ? Qt : Qnil; |
| 2629 | } | 2629 | } |
| 2630 | 2630 | ||
| 2631 | DEFUE ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, | 2631 | DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, |
| 2632 | Srun_hook_with_args_until_failure, 1, MANY, 0, | 2632 | Srun_hook_with_args_until_failure, 1, MANY, 0, |
| 2633 | doc: /* Run HOOK with the specified arguments ARGS. | 2633 | doc: /* Run HOOK with the specified arguments ARGS. |
| 2634 | HOOK should be a symbol, a hook variable. If HOOK has a non-nil | 2634 | HOOK should be a symbol, a hook variable. If HOOK has a non-nil |
| @@ -2915,7 +2915,7 @@ call7 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3, | |||
| 2915 | 2915 | ||
| 2916 | /* The caller should GCPRO all the elements of ARGS. */ | 2916 | /* The caller should GCPRO all the elements of ARGS. */ |
| 2917 | 2917 | ||
| 2918 | DEFUE ("functionp", Ffunctionp, Sfunctionp, 1, 1, 0, | 2918 | DEFUN ("functionp", Ffunctionp, Sfunctionp, 1, 1, 0, |
| 2919 | doc: /* Non-nil if OBJECT is a function. */) | 2919 | doc: /* Non-nil if OBJECT is a function. */) |
| 2920 | (Lisp_Object object) | 2920 | (Lisp_Object object) |
| 2921 | { | 2921 | { |
| @@ -2948,7 +2948,7 @@ DEFUE ("functionp", Ffunctionp, Sfunctionp, 1, 1, 0, | |||
| 2948 | return Qnil; | 2948 | return Qnil; |
| 2949 | } | 2949 | } |
| 2950 | 2950 | ||
| 2951 | DEFUE ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, | 2951 | DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, |
| 2952 | doc: /* Call first argument as a function, passing remaining arguments to it. | 2952 | doc: /* Call first argument as a function, passing remaining arguments to it. |
| 2953 | Return the value that function returns. | 2953 | Return the value that function returns. |
| 2954 | Thus, (funcall 'cons 'x 'y) returns (x . y). | 2954 | Thus, (funcall 'cons 'x 'y) returns (x . y). |