]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
authorMichael Albinus <michael.albinus@gmx.de>
Tue, 17 Nov 2009 10:38:44 +0000 (10:38 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Tue, 17 Nov 2009 10:38:44 +0000 (10:38 +0000)
Don't set `ad-return-value' if `ad-do-it' doesn't.

lisp/ChangeLog
lisp/net/tramp.el

index 409bcfa20bd1ce0ef2b9ec7d61cb063e7c2faaf1..58ea6df92db5fc81802f6bd8e68b15ac4a5d6313 100644 (file)
@@ -1,3 +1,8 @@
+2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
+       Don't set `ad-return-value' if `ad-do-it' doesn't.
+
 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
 
        * menu-bar.el: Put "Use system font" in Option-menu.
index ec2ae75e15157d56faf052d69697e789a8ba8407..dc755d04a4aa8c5ff7eb5344132338a0b76df6bc 100644 (file)
@@ -8364,21 +8364,16 @@ Only works for Bourne-like shells."
   (defadvice file-expand-wildcards
     (around tramp-advice-file-expand-wildcards activate)
     (let ((name (ad-get-arg 0)))
-      (if (tramp-tramp-file-p name)
-         ;; If it's a Tramp file, dissect it and look if wildcards
-         ;; need to be expanded at all.
-         (if (string-match
-              "[[*?]"
-              (tramp-file-name-localname (tramp-dissect-file-name name)))
-             (progn
-               ad-do-it
-               (unless ad-return-value
-                 (setq ad-return-value (list name))))
-           (setq ad-return-value (list name)))
-       ;; If it is not a Tramp file, just run the original function.
-       ad-do-it
-       (unless ad-return-value
-         (setq ad-return-value (list name))))))
+      ;; If it's a Tramp file, dissect it and look if wildcards need
+      ;; to be expanded at all.
+      (if (and
+          (tramp-tramp-file-p name)
+          (not (string-match
+                "[[*?]"
+                (tramp-file-name-localname (tramp-dissect-file-name name)))))
+         (setq ad-return-value (list name))
+       ;; Otherwise, just run the original function.
+       ad-do-it)))
   (add-hook
    'tramp-unload-hook
    (lambda ()