aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-07-31 15:50:46 +0000
committerLuc Teirlinck2004-07-31 15:50:46 +0000
commit5581edf5686a20f12cd42d330c45ceec9d5df821 (patch)
treecd974ef08e7bc5ff6260cd376135aaa38871c4a3
parent0e91dc923a0495534dba3d5b55093676d0321986 (diff)
downloademacs-5581edf5686a20f12cd42d330c45ceec9d5df821.tar.gz
emacs-5581edf5686a20f12cd42d330c45ceec9d5df821.zip
(Fcall_interactively): Doc fix.
-rw-r--r--src/callint.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index a3e4984fd16..8b8cb032095 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -256,7 +256,8 @@ Optional second arg RECORD-FLAG non-nil
256means unconditionally put this command in the command-history. 256means unconditionally put this command in the command-history.
257Otherwise, this is done only if an arg is read using the minibuffer. 257Otherwise, this is done only if an arg is read using the minibuffer.
258Optional third arg KEYS, if given, specifies the sequence of events to 258Optional third arg KEYS, if given, specifies the sequence of events to
259supply if the command inquires which events were used to invoke it. */) 259supply if the command inquires which events were used to invoke it.
260If KEYS is omitted or nil, the return value of `this-command-keys' is used. */)
260 (function, record_flag, keys) 261 (function, record_flag, keys)
261 Lisp_Object function, record_flag, keys; 262 Lisp_Object function, record_flag, keys;
262{ 263{