diff options
| author | Joakim Verona | 2011-07-15 04:39:29 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-07-15 04:39:29 +0200 |
| commit | 4f616a2e7ed1db28da98df90266e9751a8ae9ee1 (patch) | |
| tree | 74a9dcbe13e945e712ae04a4a94c2202ca720591 /src/callint.c | |
| parent | ff2be00005c3aeda6e11d7ed264ce86f02b60958 (diff) | |
| parent | ec2bc542a4d0127425625e8cb458684bd825675a (diff) | |
| download | emacs-4f616a2e7ed1db28da98df90266e9751a8ae9ee1.tar.gz emacs-4f616a2e7ed1db28da98df90266e9751a8ae9ee1.zip | |
merge from upstream
Diffstat (limited to 'src/callint.c')
| -rw-r--r-- | src/callint.c | 9 |
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 | ||
| 106 | In addition, if the string begins with `*', an error is signaled if | 106 | In addition, if the string begins with `*', an error is signaled if |
| 107 | the buffer is read-only. | 107 | the buffer is read-only. |
| 108 | If the string begins with `@', Emacs searches the key sequence which | 108 | If `@' 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. | ||
| 111 | If the string begins with `^' and `shift-select-mode' is non-nil, | 112 | If 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'. |
| 113 | You may use `@', `*', and `^' together. They are processed in the | 114 | You 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 | ||
| 235 | DEFUN ("call-interactively", Fcall_interactively, Scall_interactively, 1, 3, 0, | 236 | DEFUN ("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. |
| 237 | Return the value FUNCTION returns. | 238 | Return the value FUNCTION returns. |
| 238 | The function contains a specification of how to do the argument reading. | 239 | The function contains a specification of how to do the argument reading. |
| 239 | In the case of user-defined functions, this is specified by placing a call | 240 | In the case of user-defined functions, this is specified by placing a call |