]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp-cache.el (tramp-flush-file-function): Wrap the code
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 24 Jul 2014 07:30:36 +0000 (09:30 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 24 Jul 2014 07:30:36 +0000 (09:30 +0200)
with `save-match-data'.

Fixes: debbugs:18095
lisp/ChangeLog
lisp/net/tramp-cache.el

index 8a916a7f11025d44bf9a503e93be69f77862b3cb..5024dadcad92e136b13175d8419e225c0f071091 100644 (file)
@@ -1,3 +1,8 @@
+2014-07-24  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-cache.el (tramp-flush-file-function): Wrap the code
+       with `save-match-data'.  (Bug#18095)
+
 2014-07-21  Vincent Belaïche  <vincentb1@users.sourceforge.net>
 
        * ses.el (ses-truncate-cell): Use cl-progv instead of eval in
index b5ef8c28d2d10d30ce4a698ce16815e851cdf1dd..838d326603c14b656fa6df8953d724f3b0e29afe 100644 (file)
@@ -201,17 +201,19 @@ Remove also properties of all files in subdirectories."
 ;; Reverting or killing a buffer should also flush file properties.
 ;; They could have been changed outside Tramp.  In eshell, "ls" would
 ;; not show proper directory contents when a file has been copied or
-;; deleted before.
+;; deleted before.  We must apply `save-match-data', because it would
+;; corrupt other packages otherwise (reported from org).
 (defun tramp-flush-file-function ()
   "Flush all Tramp cache properties from `buffer-file-name'.
 This is suppressed for temporary buffers."
-  (unless (string-match "^ \\*temp\\*" (or (buffer-name) ""))
-    (let ((bfn (if (stringp (buffer-file-name))
-                  (buffer-file-name)
-                default-directory)))
-      (when (tramp-tramp-file-p bfn)
-       (with-parsed-tramp-file-name bfn nil
-         (tramp-flush-file-property v localname))))))
+  (save-match-data
+    (unless (string-match "^ \\*temp\\*" (or (buffer-name) ""))
+      (let ((bfn (if (stringp (buffer-file-name))
+                    (buffer-file-name)
+                  default-directory)))
+       (when (tramp-tramp-file-p bfn)
+         (with-parsed-tramp-file-name bfn nil
+           (tramp-flush-file-property v localname)))))))
 
 (add-hook 'before-revert-hook 'tramp-flush-file-function)
 (add-hook 'eshell-pre-command-hook 'tramp-flush-file-function)