# HG changeset patch # User Michael Albinus # Date 1259525048 0 # Node ID 9470a3d1abeea2eeb0af3ccaaa8bf15d8fd26aa5 # Parent f276530df5ef4f5b6329cc162b131f0226ad3a07 * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'. (ange-ftp-directory-files-and-attributes) (ange-ftp-real-directory-files-and-attributes): New defuns. diff -r f276530df5ef -r 9470a3d1abee lisp/net/ange-ftp.el --- a/lisp/net/ange-ftp.el Sun Nov 29 09:48:50 2009 +0000 +++ b/lisp/net/ange-ftp.el Sun Nov 29 20:04:08 2009 +0000 @@ -2672,10 +2672,11 @@ (defmacro ange-ftp-parse-filename () ;;Extract the filename from the current line of a dired-like listing. - `(let ((eol (progn (end-of-line) (point)))) - (beginning-of-line) - (if (re-search-forward directory-listing-before-filename-regexp eol t) - (buffer-substring (point) eol)))) + `(save-match-data + (let ((eol (progn (end-of-line) (point)))) + (beginning-of-line) + (if (re-search-forward directory-listing-before-filename-regexp eol t) + (buffer-substring (point) eol))))) ;; This deals with the F switch. Should also do something about ;; unquoting names obtained with the SysV b switch and the GNU Q @@ -3421,6 +3422,17 @@ (nreverse files))) (apply 'ange-ftp-real-directory-files directory full match v19-args))) +(defun ange-ftp-directory-files-and-attributes + (directory &optional full match nosort id-format) + (setq directory (expand-file-name directory)) + (if (ange-ftp-ftp-name directory) + (mapcar + (lambda (file) + (cons file (file-attributes (expand-file-name file directory)))) + (ange-ftp-directory-files directory full match nosort)) + (ange-ftp-real-directory-files-and-attributes + directory full match nosort id-format))) + (defun ange-ftp-file-attributes (file &optional id-format) (setq file (expand-file-name file)) (let ((parsed (ange-ftp-ftp-name file))) @@ -4359,6 +4371,8 @@ (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) +(put 'directory-files-and-attributes 'ange-ftp + 'ange-ftp-directory-files-and-attributes) (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p) @@ -4436,6 +4450,8 @@ (ange-ftp-run-real-handler 'insert-file-contents args)) (defun ange-ftp-real-directory-files (&rest args) (ange-ftp-run-real-handler 'directory-files args)) +(defun ange-ftp-real-directory-files-and-attributes (&rest args) + (ange-ftp-run-real-handler 'directory-files-and-attributes args)) (defun ange-ftp-real-file-directory-p (&rest args) (ange-ftp-run-real-handler 'file-directory-p args)) (defun ange-ftp-real-file-writable-p (&rest args)