summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/simple.el2
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))))