diff options
author | Glenn Morris <rgm@gnu.org> | 2016-12-07 20:10:54 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2016-12-07 20:10:54 -0500 |
commit | 5415c8be603a8498d680db5348f797dba7770f22 (patch) | |
tree | 102a077b9c4761d18df9925a6cb97f0b4c1142e9 | |
parent | 75c9314cbf01e048f9626b26233b2de7b9cdba65 (diff) | |
download | emacs-5415c8be603a8498d680db5348f797dba7770f22.tar.gz |
Doc fix for recent change
* lisp/simple.el (region-modifiable-p): Doc fix.
-rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)))) |