From: Richard M. Stallman Date: Mon, 23 Apr 2007 21:16:31 +0000 (+0000) Subject: (set-mark-command-repeat-pop): Doc fix. X-Git-Tag: emacs-pretest-22.0.99~28 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ebd2fc0d037cf04b7ac820cf353182173649cdf0;p=emacs.git (set-mark-command-repeat-pop): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ffd4b3c18f2..40b96dc1820 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-04-23 Richard Stallman + + * simple.el (set-mark-command-repeat-pop): Doc fix. + 2007-04-23 Chong Yidong * 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." (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)