1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(Fcalled_interactively_p): Rename from Fcall_interactive_p.

(syms_of_eval): Defsubr it.
This commit is contained in:
Kim F. Storm 2004-11-02 10:00:14 +00:00
parent ca28104dfd
commit 4b664e7618

View 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);