aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-04-23 21:16:31 +0000
committerRichard M. Stallman2007-04-23 21:16:31 +0000
commitebd2fc0d037cf04b7ac820cf353182173649cdf0 (patch)
tree74e095ceb95dc4bc2903f3bee0734ca1a36f670f
parent32b147b57d6db61b3b0d8518610db9e7e1614906 (diff)
downloademacs-ebd2fc0d037cf04b7ac820cf353182173649cdf0.tar.gz
emacs-ebd2fc0d037cf04b7ac820cf353182173649cdf0.zip
(set-mark-command-repeat-pop): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/simple.el11
2 files changed, 12 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ffd4b3c18f2..40b96dc1820 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-04-23 Richard Stallman <rms@gnu.org>
2
3 * simple.el (set-mark-command-repeat-pop): Doc fix.
4
12007-04-23 Chong Yidong <cyd@stupidchicken.com> 52007-04-23 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * info.el (Info-mouse-scroll-up, Info-mouse-scroll-down): New 7 * info.el (Info-mouse-scroll-up, Info-mouse-scroll-down): New
diff --git a/lisp/simple.el b/lisp/simple.el
index 49cae2ceb46..c41804fa378 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -3198,9 +3198,14 @@ Display `Mark set' unless the optional second arg NOMSG is non-nil."
3198 (message "Mark activated"))))) 3198 (message "Mark activated")))))
3199 3199
3200(defcustom set-mark-command-repeat-pop nil 3200(defcustom set-mark-command-repeat-pop nil
3201 "*Non-nil means that repeating \\[set-mark-command] after popping will pop. 3201 "*Non-nil means repeating \\[set-mark-command] after popping mark pops it again.
3202This means that if you type C-u \\[set-mark-command] \\[set-mark-command] 3202That means that C-u \\[set-mark-command] \\[set-mark-command]
3203will pop twice." 3203will pop the mark twice, and
3204C-u \\[set-mark-command] \\[set-mark-command] \\[set-mark-command]
3205will pop the mark three times.
3206
3207nil means \\[set-mark-command]'s behavior does not change
3208after C-u \\[set-mark-command]."
3204 :type 'boolean 3209 :type 'boolean
3205 :group 'editing) 3210 :group 'editing)
3206 3211