Skip to content

Commit e597c43

Browse files
committed
Merge branch 'rs/git-blame-mapcar-mapc' into maint
* rs/git-blame-mapcar-mapc: git-blame.el: use mapc instead of mapcar
2 parents 809b262 + cbbc935 commit e597c43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/emacs/git-blame.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ See also function `git-blame-mode'."
304304

305305
(defun git-blame-cleanup ()
306306
"Remove all blame properties"
307-
(mapcar 'delete-overlay git-blame-overlays)
307+
(mapc 'delete-overlay git-blame-overlays)
308308
(setq git-blame-overlays nil)
309309
(remove-git-blame-text-properties (point-min) (point-max)))
310310

0 commit comments

Comments
 (0)