aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2014-06-01 18:25:19 +0200
committerJuanma Barranquero2014-06-01 18:25:19 +0200
commitcc30429078211ed317e06d285df4da4520c9567a (patch)
tree08ba3218bf672fc17570c03933d777001076eb72 /src
parent30491d4964c17d1448a10bec0563ad321fd3e9e9 (diff)
downloademacs-cc30429078211ed317e06d285df4da4520c9567a.tar.gz
emacs-cc30429078211ed317e06d285df4da4520c9567a.zip
src/callint.c (Ffuncall_interactively): Add usage.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/callint.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 517a226b8da..050a6f2b0cf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12014-06-01 Juanma Barranquero <lekktu@gmail.com>
2
3 * callint.c (Ffuncall_interactively): Add usage.
4
12014-06-01 Jan Djärv <jan.h.d@swipnet.se> 52014-06-01 Jan Djärv <jan.h.d@swipnet.se>
2 6
3 * nsfns.m (ns_appkit_version_str): Add os version for Cocoa. 7 * nsfns.m (ns_appkit_version_str): Add os version for Cocoa.
diff --git a/src/callint.c b/src/callint.c
index 24baedf3873..9e40cc01a62 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -237,7 +237,8 @@ fix_command (Lisp_Object input, Lisp_Object values)
237DEFUN ("funcall-interactively", Ffuncall_interactively, Sfuncall_interactively, 237DEFUN ("funcall-interactively", Ffuncall_interactively, Sfuncall_interactively,
238 1, MANY, 0, doc: /* Like `funcall' but marks the call as interactive. 238 1, MANY, 0, doc: /* Like `funcall' but marks the call as interactive.
239I.e. arrange that within the called function `called-interactively-p' will 239I.e. arrange that within the called function `called-interactively-p' will
240return non-nil. */) 240return non-nil.
241usage: (funcall-interactively FUNCTION &rest ARGUMENTS) */)
241 (ptrdiff_t nargs, Lisp_Object *args) 242 (ptrdiff_t nargs, Lisp_Object *args)
242{ 243{
243 ptrdiff_t speccount = SPECPDL_INDEX (); 244 ptrdiff_t speccount = SPECPDL_INDEX ();