aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-04-29 18:42:24 +0000
committerStefan Monnier2004-04-29 18:42:24 +0000
commitc29dafeb0af5b05fc6fff5e038070f56fdd82cd9 (patch)
tree7b7618c0c9c7a81502855c0a608f7eb8a98c8a6a
parent4479a2f89ae5b29bdedf55cd00de40843c9df59d (diff)
downloademacs-c29dafeb0af5b05fc6fff5e038070f56fdd82cd9.tar.gz
emacs-c29dafeb0af5b05fc6fff5e038070f56fdd82cd9.zip
(remove-overlays): Docstring change.
-rw-r--r--lisp/subr.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index a9acc15606d..e81713ebf29 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1531,8 +1531,7 @@ If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
1531(defun remove-overlays (&optional beg end name val) 1531(defun remove-overlays (&optional beg end name val)
1532 "Clear BEG and END of overlays whose property NAME has value VAL. 1532 "Clear BEG and END of overlays whose property NAME has value VAL.
1533Overlays might be moved and or split. 1533Overlays might be moved and or split.
1534If BEG is nil, `(point-min)' is used. If END is nil, `(point-max)' 1534BEG and END default to the beginning resp. end of buffer."
1535is used."
1536 (unless beg (setq beg (point-min))) 1535 (unless beg (setq beg (point-min)))
1537 (unless end (setq end (point-max))) 1536 (unless end (setq end (point-max)))
1538 (if (< end beg) 1537 (if (< end beg)