1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-29 11:02:01 +00:00

(reb-delete-overlays): Use mapc' rather than mapcar'.

This commit is contained in:
Juanma Barranquero 2007-09-26 00:15:01 +00:00
parent ba2153737a
commit 90ce955480

View File

@ -515,7 +515,7 @@ optional fourth argument FORCE is non-nil."
"Delete all RE Builder overlays in the `reb-target-buffer' buffer."
(if (buffer-live-p reb-target-buffer)
(with-current-buffer reb-target-buffer
(mapcar 'delete-overlay reb-overlays)
(mapc 'delete-overlay reb-overlays)
(setq reb-overlays nil))))
(defun reb-assert-buffer-in-window ()