diff options
| author | Lars Magne Ingebrigtsen | 2011-07-04 01:21:45 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-04 01:21:45 +0200 |
| commit | 1e49bfab49317e46540f13c4091200b211c24ba6 (patch) | |
| tree | 3760b4735723a5ea137f70e3e7a25017407ec303 /src | |
| parent | 3034e9e7062f655541722fa883a9ea5b0605e10d (diff) | |
| download | emacs-1e49bfab49317e46540f13c4091200b211c24ba6.tar.gz emacs-1e49bfab49317e46540f13c4091200b211c24ba6.zip | |
* callint.c (Finteractive): Clarify the meaning of "@".
Fixes: debbugs:8813
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/callint.c | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b77759527e7..5f3aa60dfd6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813). | ||
| 4 | |||
| 1 | 2011-07-03 Chong Yidong <cyd@stupidchicken.com> | 5 | 2011-07-03 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * xfaces.c (Finternal_merge_in_global_face): Modify the foreground | 7 | * xfaces.c (Finternal_merge_in_global_face): Modify the foreground |
diff --git a/src/callint.c b/src/callint.c index 4d0a2a07921..1371b403e4b 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 |