summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2004-11-02 10:00:14 +0000
committerKim F. Storm <storm@cua.dk>2004-11-02 10:00:14 +0000
commit69c56fbe2fdad17e95828e3fb290f46005a25767 (patch)
tree827ab2dc9b02d51cc4282240c91df6eae24da3f2 /src
parent069b83eb285f855678e526f4b88adc667a201763 (diff)
downloademacs-69c56fbe2fdad17e95828e3fb290f46005a25767.tar.gz
(Fcalled_interactively_p): Rename from Fcall_interactive_p.
(syms_of_eval): Defsubr it.
Diffstat (limited to 'src')
-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.) */)
}
-DEFUN ("called-interactively-p", Fcall_interactive_p, Scall_interactive_p, 0, 0, 0,
+DEFUN ("called-interactively-p", Fcalled_interactively_p, Scalled_interactively_p, 0, 0, 0,
doc: /* Return t if the function using this was called with call-interactively.
This is used for implementing advice and other function-modifying
features of Emacs.
@@ -3470,6 +3470,7 @@ The value the function returns is not used. */);
defsubr (&Scondition_case);
defsubr (&Ssignal);
defsubr (&Sinteractive_p);
+ defsubr (&Scalled_interactively_p);
defsubr (&Scommandp);
defsubr (&Sautoload);
defsubr (&Seval);