]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last doc string change in simple.el
authorEli Zaretskii <eliz@gnu.org>
Fri, 29 Sep 2017 12:59:17 +0000 (15:59 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 29 Sep 2017 12:59:17 +0000 (15:59 +0300)
* lisp/simple.el (shell-command-saved-pos)
(region-extract-function, region-bounds): Doc fixes.  (Bug#28609)

lisp/simple.el

index 469557713d72f02308c173f0dc9c8b3354f57c16..767a3f041e9536973725d30863eaa36f0f806522 100644 (file)
@@ -53,8 +53,8 @@ restores the buffer position before the command."
   :version "26.1")
 
 (defvar shell-command-saved-pos nil
-  "Point position in the output buffer after command completes.
-It is an alist of (BUFFER . POS), where BUFFER is the output
+  "Position of point in the output buffer after command completes.
+It is a cons cell of the form (BUFFER . POS), where BUFFER is the output
 buffer, and POS is the point position in BUFFER once the command finishes.
 This variable is used when `shell-command-dont-erase-buffer' is non-nil.")
 
@@ -1003,7 +1003,7 @@ Called with one argument METHOD.
 If METHOD is `delete-only', then delete the region; the return value
 is undefined.  If METHOD is nil, then return the content as a string.
 If METHOD is `bounds', then return the boundaries of the region
-as a list of pairs of (START . END) positions.
+as a cons cell of the form (START . END).
 If METHOD is anything else, delete the region and return its content
 as a string, after filtering it with `filter-buffer-substring', which
 is called with METHOD as its 3rd argument.")
@@ -5473,7 +5473,8 @@ also checks the value of `use-empty-active-region'."
        (progn (cl-assert (mark)) t)))
 
 (defun region-bounds ()
-  "Return the boundaries of the region as a list of pairs of (START . END) positions."
+  "Return the boundaries of the region as a pair of positions.
+Value is a cons cell of the form (START . END)."
   (funcall region-extract-function 'bounds))
 
 (defun region-noncontiguous-p ()