diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-05-09 19:45:49 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-05-09 19:45:49 +0000 |
commit | 227d2bed6303ced24f5ac1ea4306be685d8665f9 (patch) | |
tree | 7f6ef2b497c198c889384f71fb527595f097a690 /lisp/vc-hooks.el | |
parent | 9998d430a7abbafc6a89911d679248a77a3c8ad3 (diff) | |
download | emacs-227d2bed6303ced24f5ac1ea4306be685d8665f9.tar.gz |
(vc-find-file-hook): Follow multiple links all the way.
Diffstat (limited to 'lisp/vc-hooks.el')
-rw-r--r-- | lisp/vc-hooks.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 38b91ddef85..5005c30383a 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -953,7 +953,7 @@ control system name." (make-local-variable 'backup-inhibited) (setq backup-inhibited t)))) ((let* ((link (file-symlink-p buffer-file-name)) - (link-type (and link (vc-backend link)))) + (link-type (and link (vc-backend (file-chase-links link))))) (if link-type (cond ((eq vc-follow-symlinks nil) (message |