]> git.eshelyaron.com Git - emacs.git/commitdiff
bug#28609: simple.el
authorDevon Sean McCullough <Emacs-Hacker2017@jovi.net>
Tue, 26 Sep 2017 14:51:04 +0000 (10:51 -0400)
committerEli Zaretskii <eliz@gnu.org>
Fri, 29 Sep 2017 12:50:51 +0000 (15:50 +0300)
Correct grammar; also, call a pair a pair.

(cherry picked from commit 25ef543a97a80718cc4eb33734d393420a43f41e)

lisp/simple.el

index 469557713d72f02308c173f0dc9c8b3354f57c16..44728fd566aa3fc6305a15debd057b56b491286a 100644 (file)
@@ -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 pair of the form (START . END) positions.
 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 of the form (START . END)."
   (funcall region-extract-function 'bounds))
 
 (defun region-noncontiguous-p ()