]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcalled_interactively_p): Rename from Fcall_interactive_p.
authorKim F. Storm <storm@cua.dk>
Tue, 2 Nov 2004 10:00:14 +0000 (10:00 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 2 Nov 2004 10:00:14 +0000 (10:00 +0000)
(syms_of_eval): Defsubr it.

src/eval.c

index 6d37d43c79c1ec2a0dec0df79ff0d8904b713b70..5fb35cee58bfe3c741d4694ac2069fcc77bbacbd 100644 (file)
@@ -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);