git-blame-cache was declared buffer-local two times and git-blame-idle-timer is global. The intended meaning was probably to make git-blame-idle-timer buffer-local. Signed-off-by: Michal Sojka <sojkam1@xxxxxxxxxxx> --- contrib/emacs/git-blame.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/emacs/git-blame.el b/contrib/emacs/git-blame.el index e671f6c..18ce241 100644 --- a/contrib/emacs/git-blame.el +++ b/contrib/emacs/git-blame.el @@ -200,7 +200,7 @@ minor mode.") (defvar git-blame-idle-timer nil "An idle timer that updates the blame") -(make-variable-buffer-local 'git-blame-cache) +(make-variable-buffer-local 'git-blame-idle-timer) (defvar git-blame-update-queue nil "A queue of update requests") -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html