From: Glenn Morris Date: Thu, 8 Dec 2016 01:10:54 +0000 (-0500) Subject: Doc fix for recent change X-Git-Tag: emacs-26.0.90~1157 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5415c8be603a8498d680db5348f797dba7770f22;p=emacs.git Doc fix for recent change * lisp/simple.el (region-modifiable-p): Doc fix. --- diff --git a/lisp/simple.el b/lisp/simple.el index 4e44e70aa64..0ee2f060e5e 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -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))))