diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2018-01-18 20:11:34 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2018-01-18 20:11:34 -0500 |
commit | 97fc87a3924c8b51e90b7d359cc585cbfa972e58 (patch) | |
tree | 6ebac3d878d36afd9911a1ec8b546cbc85669b59 /lisp | |
parent | 5ec3853326933bef899de1a8fee66d902ea8f7c9 (diff) | |
download | emacs-97fc87a3924c8b51e90b7d359cc585cbfa972e58.tar.gz emacs-97fc87a3924c8b51e90b7d359cc585cbfa972e58.tar.bz2 emacs-97fc87a3924c8b51e90b7d359cc585cbfa972e58.zip |
* lisp/vc/vc-hg.el, lisp/vc/vc-git.el: Flush the 'vc-functions' cache.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/vc/vc-git.el | 4 | ||||
-rw-r--r-- | lisp/vc/vc-hg.el | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 626cf6165a3..2d6ca1386a3 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el @@ -183,6 +183,10 @@ Should be consistent with the Git config value i18n.logOutputEncoding." ;; History of Git commands. (defvar vc-git-history nil) +;; Clear up the cache to force vc-call to check again and discover +;; new functions when we reload this file. +(put 'Git 'vc-functions nil) + ;;; BACKEND PROPERTIES (defun vc-git-revision-granularity () 'repository) diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el index 08b1be8f6d3..ad817fd9b9c 100644 --- a/lisp/vc/vc-hg.el +++ b/lisp/vc/vc-hg.el @@ -175,6 +175,10 @@ highlighting the Log View buffer." :version "24.5") +;; Clear up the cache to force vc-call to check again and discover +;; new functions when we reload this file. +(put 'Hg 'vc-functions nil) + ;;; Properties of the backend (defvar vc-hg-history nil) |