aboutsummaryrefslogtreecommitdiffstats
path: root/src/callint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/callint.c b/src/callint.c
index 4d0a2a07921..26b161a25b3 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -105,9 +105,10 @@ Z -- Coding system, nil if no prefix arg.
105 105
106In addition, if the string begins with `*', an error is signaled if 106In addition, if the string begins with `*', an error is signaled if
107 the buffer is read-only. 107 the buffer is read-only.
108If the string begins with `@', Emacs searches the key sequence which 108If `@' appears at the beginning of the string, and if the key sequence
109 invoked the command for its first mouse click (or any other event 109 used to invoke the command includes any mouse events, then the window
110 which specifies a window). 110 associated with the first of those events is selected before the
111 command is run.
111If the string begins with `^' and `shift-select-mode' is non-nil, 112If the string begins with `^' and `shift-select-mode' is non-nil,
112 Emacs first calls the function `handle-shift-selection'. 113 Emacs first calls the function `handle-shift-selection'.
113You may use `@', `*', and `^' together. They are processed in the 114You may use `@', `*', and `^' together. They are processed in the
@@ -233,7 +234,7 @@ fix_command (Lisp_Object input, Lisp_Object values)
233} 234}
234 235
235DEFUN ("call-interactively", Fcall_interactively, Scall_interactively, 1, 3, 0, 236DEFUN ("call-interactively", Fcall_interactively, Scall_interactively, 1, 3, 0,
236 doc: /* Call FUNCTION, reading args according to its interactive calling specs. 237 doc: /* Call FUNCTION, providing args according to its interactive calling specs.
237Return the value FUNCTION returns. 238Return the value FUNCTION returns.
238The function contains a specification of how to do the argument reading. 239The function contains a specification of how to do the argument reading.
239In the case of user-defined functions, this is specified by placing a call 240In the case of user-defined functions, this is specified by placing a call