From: Stefan Monnier Date: Thu, 29 Apr 2004 18:42:24 +0000 (+0000) Subject: (remove-overlays): Docstring change. X-Git-Tag: ttn-vms-21-2-B4~6522 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c29dafeb0af5b05fc6fff5e038070f56fdd82cd9;p=emacs.git (remove-overlays): Docstring change. --- 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." (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)