emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 44470fe: Fix documentation of 'beginning/end-of-buf


From: Eli Zaretskii
Subject: [Emacs-diffs] master 44470fe: Fix documentation of 'beginning/end-of-buffer'
Date: Fri, 30 Oct 2015 10:06:32 +0000

branch: master
commit 44470fed6f720792b2d91b907c52ce30559d03e7
Author: Phil Sainty <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix documentation of 'beginning/end-of-buffer'
    
    * lisp/simple.el (beginning-of-buffer, end-of-buffer): Clarify
    conditions under which the mark will be pushed at the previous
    position.  (Bug#21748)
---
 lisp/simple.el |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lisp/simple.el b/lisp/simple.el
index 338a060..1f2f4fe 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -905,8 +905,8 @@ With numeric arg N, put point N/10 of the way from the 
beginning.
 If the buffer is narrowed, this command uses the beginning of the
 accessible part of the buffer.
 
-If Transient Mark mode is disabled, leave mark at previous
-position, unless a \\[universal-argument] prefix is supplied."
+Push mark at previous position, unless either a \\[universal-argument] prefix
+is supplied, or Transient Mark mode is enabled and the mark is active."
   (declare (interactive-only "use `(goto-char (point-min))' instead."))
   (interactive "^P")
   (or (consp arg)
@@ -929,8 +929,8 @@ With numeric arg N, put point N/10 of the way from the end.
 If the buffer is narrowed, this command uses the end of the
 accessible part of the buffer.
 
-If Transient Mark mode is disabled, leave mark at previous
-position, unless a \\[universal-argument] prefix is supplied."
+Push mark at previous position, unless either a \\[universal-argument] prefix
+is supplied, or Transient Mark mode is enabled and the mark is active."
   (declare (interactive-only "use `(goto-char (point-max))' instead."))
   (interactive "^P")
   (or (consp arg) (region-active-p) (push-mark))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]