diff options
| author | Glenn Morris | 2016-12-07 20:10:54 -0500 |
|---|---|---|
| committer | Glenn Morris | 2016-12-07 20:10:54 -0500 |
| commit | 5415c8be603a8498d680db5348f797dba7770f22 (patch) | |
| tree | 102a077b9c4761d18df9925a6cb97f0b4c1142e9 | |
| parent | 75c9314cbf01e048f9626b26233b2de7b9cdba65 (diff) | |
| download | emacs-5415c8be603a8498d680db5348f797dba7770f22.tar.gz emacs-5415c8be603a8498d680db5348f797dba7770f22.zip | |
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)." | |||
| 603 | :version "24.3") | 603 | :version "24.3") |
| 604 | 604 | ||
| 605 | (defun region-modifiable-p (start end) | 605 | (defun region-modifiable-p (start end) |
| 606 | "Return non-nil if the region contain no non-read-only text." | 606 | "Return non-nil if the region contains no read-only text." |
| 607 | (and (not (get-text-property start 'read-only)) | 607 | (and (not (get-text-property start 'read-only)) |
| 608 | (eq end (next-single-property-change start 'read-only nil end)))) | 608 | (eq end (next-single-property-change start 'read-only nil end)))) |
| 609 | 609 | ||