Skip to content

Commit

Permalink
Merge branch 'rs/git-blame-mapcar-mapc' into maint
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 Aug 6, 2012
2 parents 809b262 + cbbc935 commit e597c43
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 e597c43

Please sign in to comment.