diff options
| author | Kim F. Storm | 2004-11-02 10:00:14 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-11-02 10:00:14 +0000 |
| commit | 4b664e76189829082fc6b947e8bb60356e62db33 (patch) | |
| tree | d90fcaf86aecbb5f0dc5424ced428998184b83dc /src/eval.c | |
| parent | ca28104dfda873b1a74828e3c7d7f150baf82bff (diff) | |
| download | emacs-4b664e76189829082fc6b947e8bb60356e62db33.tar.gz emacs-4b664e76189829082fc6b947e8bb60356e62db33.zip | |
(Fcalled_interactively_p): Rename from Fcall_interactive_p.
(syms_of_eval): Defsubr it.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 6d37d43c79c..5fb35cee58b 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -562,7 +562,7 @@ unconditionally for that argument. (`p' is a good way to do this.) */) | |||
| 562 | } | 562 | } |
| 563 | 563 | ||
| 564 | 564 | ||
| 565 | DEFUN ("called-interactively-p", Fcall_interactive_p, Scall_interactive_p, 0, 0, 0, | 565 | DEFUN ("called-interactively-p", Fcalled_interactively_p, Scalled_interactively_p, 0, 0, 0, |
| 566 | doc: /* Return t if the function using this was called with call-interactively. | 566 | doc: /* Return t if the function using this was called with call-interactively. |
| 567 | This is used for implementing advice and other function-modifying | 567 | This is used for implementing advice and other function-modifying |
| 568 | features of Emacs. | 568 | features of Emacs. |
| @@ -3470,6 +3470,7 @@ The value the function returns is not used. */); | |||
| 3470 | defsubr (&Scondition_case); | 3470 | defsubr (&Scondition_case); |
| 3471 | defsubr (&Ssignal); | 3471 | defsubr (&Ssignal); |
| 3472 | defsubr (&Sinteractive_p); | 3472 | defsubr (&Sinteractive_p); |
| 3473 | defsubr (&Scalled_interactively_p); | ||
| 3473 | defsubr (&Scommandp); | 3474 | defsubr (&Scommandp); |
| 3474 | defsubr (&Sautoload); | 3475 | defsubr (&Sautoload); |
| 3475 | defsubr (&Seval); | 3476 | defsubr (&Seval); |