aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-07-04 01:21:45 +0200
committerLars Magne Ingebrigtsen2011-07-04 01:21:45 +0200
commit1e49bfab49317e46540f13c4091200b211c24ba6 (patch)
tree3760b4735723a5ea137f70e3e7a25017407ec303 /src
parent3034e9e7062f655541722fa883a9ea5b0605e10d (diff)
downloademacs-1e49bfab49317e46540f13c4091200b211c24ba6.tar.gz
emacs-1e49bfab49317e46540f13c4091200b211c24ba6.zip
* callint.c (Finteractive): Clarify the meaning of "@".
Fixes: debbugs:8813
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/callint.c7
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 @@
12011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
4
12011-07-03 Chong Yidong <cyd@stupidchicken.com> 52011-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
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