##// END OF EJS Templates
Emacs: apply kill-local-variable instead of make-local-variable to FORGET
FUJIWARA Katsunori -
r2667:92ba858e default
parent child Browse files
Show More
@@ -972,7 +972,8 b' With a prefix argument, prompt for the p'
972 (cd (hg-root path)))
972 (cd (hg-root path)))
973 (when update
973 (when update
974 (with-current-buffer buf
974 (with-current-buffer buf
975 (set (make-local-variable 'backup-inhibited) nil)
975 (when (local-variable-p 'backup-inhibited)
976 (kill-local-variable 'backup-inhibited))
976 (hg-mode-line)))))
977 (hg-mode-line)))))
977
978
978 (defun hg-incoming (&optional repo)
979 (defun hg-incoming (&optional repo)
General Comments 0
You need to be logged in to leave comments. Login now