changeset 55232:32822ce3259d

(remove-overlays): Docstring change.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 29 Apr 2004 18:42:24 +0000
parents 7fc34677dcb8
children 038fab289258
files lisp/subr.el
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Thu Apr 29 18:39:14 2004 +0000
+++ b/lisp/subr.el	Thu Apr 29 18:42:24 2004 +0000
@@ -1531,8 +1531,7 @@
 (defun remove-overlays (&optional beg end name val)
   "Clear BEG and END of overlays whose property NAME has value VAL.
 Overlays might be moved and or split.
-If BEG is nil, `(point-min)' is used. If END is nil, `(point-max)' 
-is used."
+BEG and END default to the beginning resp. end of buffer."
   (unless beg (setq beg (point-min)))
   (unless end (setq end (point-max)))
   (if (< end beg)