From: Michael Albinus Date: Sun, 14 Jul 2013 18:45:50 +0000 (+0200) Subject: * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1793 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f6dd8b3647e7c0d32fc142a77cc6ad4c18deb916;p=emacs.git * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5451abc2119..25d666f8f40 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-07-14 Michael Albinus + + * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'. + 2013-07-13 Dmitry Gutov * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 281f497692d..c92eacd4473 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el @@ -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)