]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 14 Jul 2013 18:45:50 +0000 (20:45 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 14 Jul 2013 18:45:50 +0000 (20:45 +0200)
lisp/ChangeLog
lisp/net/tramp-sh.el

index 5451abc2119eb57fb30a4446258ab07fad020c61..25d666f8f40362d172e3f586fe2d416945d092aa 100644 (file)
@@ -1,3 +1,7 @@
+2013-07-14  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
+
 2013-07-13  Dmitry Gutov  <dgutov@yandex.ru>
 
        * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight
index 281f497692d2a9ac9b34cff4c5f3032f75ffc7b1..c92eacd44731eb3b1f4a12c8c1ac182ca7c2761c 100644 (file)
@@ -3334,7 +3334,8 @@ Returns a file name in `tramp-auto-save-directory' for autosaving this file."
        ;; `process-file-side-effects' in order to keep the cache when
        ;; `process-file' calls appear.
        (let (process-file-side-effects)
-         (tramp-run-real-handler 'vc-registered (list file)))))))
+         (ignore-errors
+           (tramp-run-real-handler 'vc-registered (list file))))))))
 
 ;;;###tramp-autoload
 (defun tramp-sh-file-name-handler (operation &rest args)