]> git.eshelyaron.com Git - emacs.git/commitdiff
(set-mark-command-repeat-pop): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Mon, 23 Apr 2007 21:16:31 +0000 (21:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 23 Apr 2007 21:16:31 +0000 (21:16 +0000)
lisp/ChangeLog
lisp/simple.el

index ffd4b3c18f2c069bc4da13975cf525991eafadff..40b96dc1820b0e9ed0a7cf7b248849dc9bd67505 100644 (file)
@@ -1,3 +1,7 @@
+2007-04-23  Richard Stallman  <rms@gnu.org>
+
+       * simple.el (set-mark-command-repeat-pop): Doc fix.
+
 2007-04-23  Chong Yidong  <cyd@stupidchicken.com>
 
        * info.el (Info-mouse-scroll-up, Info-mouse-scroll-down): New
index 49cae2ceb466d4820241592739b618bcfc48bcbb..c41804fa378390ff0c9eb840ff6ad06b16cbd833 100644 (file)
@@ -3198,9 +3198,14 @@ Display `Mark set' unless the optional second arg NOMSG is non-nil."
        (message "Mark activated")))))
 
 (defcustom set-mark-command-repeat-pop nil
-  "*Non-nil means that repeating \\[set-mark-command] after popping will pop.
-This means that if you type C-u \\[set-mark-command] \\[set-mark-command]
-will pop twice."
+  "*Non-nil means repeating \\[set-mark-command] after popping mark pops it again.
+That means that C-u \\[set-mark-command] \\[set-mark-command]
+will pop the mark twice, and
+C-u \\[set-mark-command] \\[set-mark-command] \\[set-mark-command]
+will pop the mark three times.
+
+nil means \\[set-mark-command]'s behavior does not change
+after C-u \\[set-mark-command]."
   :type 'boolean
   :group 'editing)