# HG changeset patch # User Stefan Monnier # Date 1083264144 0 # Node ID 32822ce3259d4475db4d9fa3aa7fe037ad20fe23 # Parent 7fc34677dcb890b39d03d857a6c845b25a7486e5 (remove-overlays): Docstring change. diff -r 7fc34677dcb8 -r 32822ce3259d lisp/subr.el --- 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)