aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorKim F. Storm2004-11-02 10:00:14 +0000
committerKim F. Storm2004-11-02 10:00:14 +0000
commit4b664e76189829082fc6b947e8bb60356e62db33 (patch)
treed90fcaf86aecbb5f0dc5424ced428998184b83dc /src/eval.c
parentca28104dfda873b1a74828e3c7d7f150baf82bff (diff)
downloademacs-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.c3
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
565DEFUN ("called-interactively-p", Fcall_interactive_p, Scall_interactive_p, 0, 0, 0, 565DEFUN ("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.
567This is used for implementing advice and other function-modifying 567This is used for implementing advice and other function-modifying
568features of Emacs. 568features 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);