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:
parent
ba2153737a
commit
90ce955480
@ -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 ()
|
||||
|
Loading…
Reference in New Issue
Block a user