Skip to content

Commit

Permalink
Merge branch 'rs/git-blame-mapcar-mapc'
Browse files Browse the repository at this point in the history
* rs/git-blame-mapcar-mapc:
  git-blame.el: use mapc instead of mapcar
  • Loading branch information
Junio C Hamano committed Jun 25, 2012
2 parents 4536214 + cbbc935 commit d692d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/emacs/git-blame.el
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ See also function `git-blame-mode'."

(defun git-blame-cleanup ()
"Remove all blame properties"
(mapcar 'delete-overlay git-blame-overlays)
(mapc 'delete-overlay git-blame-overlays)
(setq git-blame-overlays nil)
(remove-git-blame-text-properties (point-min) (point-max)))

Expand Down

0 comments on commit d692d34

Please sign in to comment.