diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2019-11-18 15:33:21 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2019-11-18 15:33:21 +0100 |
commit | 3cc06d1abb6587e0922a5ddc7a7febd3dd71d55a (patch) | |
tree | fdd22fa3627c652518268c62104b966b99bdd52b | |
parent | 2e92f176a3ae68ed6fcf9f07c173c61a497f33fd (diff) | |
download | emacs-3cc06d1abb6587e0922a5ddc7a7febd3dd71d55a.tar.gz emacs-3cc06d1abb6587e0922a5ddc7a7febd3dd71d55a.tar.bz2 emacs-3cc06d1abb6587e0922a5ddc7a7febd3dd71d55a.zip |
* lisp/net/tramp.el (tramp-handle-file-regular-p): Improve error handling.
-rw-r--r-- | lisp/net/tramp.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 99c93eaa573..cb40c71cfeb 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -3306,9 +3306,13 @@ User is always nil." (defun tramp-handle-file-regular-p (filename) "Like `file-regular-p' for Tramp files." (and (file-exists-p filename) - (eq ?- - (aref (tramp-compat-file-attribute-modes (file-attributes filename)) - 0)))) + ;; Sometimes, `file-attributes' does not return a proper value + ;; even if `file-exists-p' does. + (ignore-errors + (eq ?- + (aref + (tramp-compat-file-attribute-modes (file-attributes filename)) + 0))))) (defun tramp-handle-file-remote-p (filename &optional identification connected) "Like `file-remote-p' for Tramp files." |