emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 5415c8b: Doc fix for recent change


From: Glenn Morris
Subject: [Emacs-diffs] master 5415c8b: Doc fix for recent change
Date: Thu, 8 Dec 2016 01:11:05 +0000 (UTC)

branch: master
commit 5415c8be603a8498d680db5348f797dba7770f22
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    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 4e44e70..0ee2f06 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))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]