]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix for recent change
authorGlenn Morris <rgm@gnu.org>
Thu, 8 Dec 2016 01:10:54 +0000 (20:10 -0500)
committerGlenn Morris <rgm@gnu.org>
Thu, 8 Dec 2016 01:10:54 +0000 (20:10 -0500)
* lisp/simple.el (region-modifiable-p): Doc fix.

lisp/simple.el

index 4e44e70aa64a425991aedafab65f326e4830c77b..0ee2f060e5e6b9919d3c1d543ef9b5b59eedcfe8 100644 (file)
@@ -603,7 +603,7 @@ is called on the entire buffer (rather than an active region)."
   :version "24.3")
 
 (defun region-modifiable-p (start end)
-  "Return non-nil if the region contain no non-read-only text."
+  "Return non-nil if the region contains no read-only text."
   (and (not (get-text-property start 'read-only))
        (eq end (next-single-property-change start 'read-only nil end))))