emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp/net tramp.el


From: Michael Albinus
Subject: [Emacs-diffs] emacs/lisp/net tramp.el
Date: Fri, 24 Apr 2009 13:54:21 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Michael Albinus <albinus>       09/04/24 13:54:21

Modified files:
        lisp/net       : tramp.el 

Log message:
        * net/tramp.el (tramp-handle-directory-files-and-attributes-with-stat)
        (tramp-handle-file-name-all-completions): Don't use "-b" as ls
        arg.  It does not work on OpenBSD.  Reported by Taylor Venable
        <address@hidden>.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/net/tramp.el?cvsroot=emacs&r1=1.233&r2=1.234

Patches:
Index: tramp.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/net/tramp.el,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -b -r1.233 -r1.234
--- tramp.el    14 Apr 2009 14:36:38 -0000      1.233
+++ tramp.el    24 Apr 2009 13:54:20 -0000      1.234
@@ -2920,7 +2920,7 @@
    vec
    (format
     (concat
-     "cd %s; echo \"(\"; (%s -ab | xargs "
+     "cd %s; echo \"(\"; (%s -a | xargs "
      "%s -c '(\"%%n\" (\"%%N\") %%h %s %s %%X.0 %%Y.0 %%Z.0 %%s.0 \"%%A\" t 
%%i.0 -1)'); "
      "echo \")\"")
     (tramp-shell-quote-argument localname)
@@ -2962,7 +2962,7 @@
           ;; rock.  address@hidden
           (tramp-send-command
            v
-           (format (concat "%s -ab 2>/dev/null | while read f; do "
+           (format (concat "%s -a 2>/dev/null | while read f; do "
                            "if %s -d \"$f\" 2>/dev/null; "
                            "then echo \"$f/\"; else echo \"$f\"; fi; done")
                    (tramp-get-ls-command v)
@@ -7763,6 +7763,10 @@
 ;;   encoding routine.
 ;; * It makes me wonder if tramp couldn't fall back to ssh when scp
 ;;   isn't on the remote host. (Mark A. Hershberger)
+;; * To improve the behavior in case of things like "git status", it
+;;   might be worthwhile to add some way to indicate that a particular
+;;   use of process-file is (supposed to be) free of side-effects.
+;;   (Stefan Monnier)
 
 ;; Functions for file-name-handler-alist:
 ;; diff-latest-backup-file -- in diff.el




reply via email to

[Prev in Thread] Current Thread [Next in Thread]