From 5415c8be603a8498d680db5348f797dba7770f22 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 7 Dec 2016 20:10:54 -0500 Subject: [PATCH] Doc fix for recent change * lisp/simple.el (region-modifiable-p): Doc fix. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))) -- 2.39.2