Merge branch 'rs/git-blame-mapcar-mapc'

* rs/git-blame-mapcar-mapc:
  git-blame.el: use mapc instead of mapcar
This commit is contained in:
Junio C Hamano 2012-06-25 11:24:52 -07:00
Родитель 45362148fa cbbc935ce0
Коммит d692d34653
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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)))