# HG changeset patch # User Michael Albinus # Date 1261857883 0 # Node ID 9e3bbd77797cf624e7b8b8a4c41d55119599e02f # Parent 33320786e55eeac924b5b53b19fb9fe0b5c3d28b * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the switches. Check also for //SUBDIRED// line. diff -r 33320786e55e -r 9e3bbd77797c lisp/ChangeLog --- a/lisp/ChangeLog Sat Dec 26 15:56:43 2009 +0000 +++ b/lisp/ChangeLog Sat Dec 26 20:04:43 2009 +0000 @@ -1,3 +1,8 @@ +2009-12-26 Michael Albinus + + * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the + switches. Check also for //SUBDIRED// line. + 2009-12-23 Vinicius Jose Latorre * ps-print.el (ps-face-attributes): It was not returning the diff -r 33320786e55e -r 9e3bbd77797c lisp/net/tramp.el --- a/lisp/net/tramp.el Sat Dec 26 15:56:43 2009 +0000 +++ b/lisp/net/tramp.el Sat Dec 26 20:04:43 2009 +0000 @@ -38,7 +38,7 @@ ;; ;; This package only works for Emacs 21.1 and higher, and for XEmacs 21.4 ;; and higher. For XEmacs 21, you need the package `fsf-compat' for -;; the `with-timeout' macro.) +;; the `with-timeout' macro. ;; ;; Also see the todo list at the bottom of this file. ;; @@ -4079,6 +4079,8 @@ (setq switches (concat "-d " switches))) (when wildcard (setq switches (concat switches " " wildcard))) + (when (string-match "'" switches) + (setq switches (replace-match "\\\\'" nil nil switches))) ;; If `full-directory-p', we just say `ls -l FILENAME'. ;; Else we chdir to the parent directory, then say `ls -ld BASENAME'. (if full-directory-p @@ -4121,6 +4123,8 @@ ;; Check for "--dired" output. (forward-line -2) + (when (looking-at "//SUBDIRED//") + (forward-line -1)) (when (looking-at "//DIRED//") (let ((end (tramp-compat-line-end-position)) (linebeg (point)))