# HG changeset patch # User Kenichi Handa # Date 888909476 0 # Node ID 390b026f483d22ba2baba7e300be92dd2823939d # Parent cc3f3c1ea7250a86cb110e0270c5d9a1423c464d (insert-directory): Bind coding-system-for-write. Don't encode filename here because call-process encodes the arguments by codign-system-for-write. diff -r cc3f3c1ea725 -r 390b026f483d lisp/files.el --- a/lisp/files.el Tue Mar 03 02:02:53 1998 +0000 +++ b/lisp/files.el Tue Mar 03 07:17:56 1998 +0000 @@ -2988,6 +2988,8 @@ (and enable-multibyte-characters (or file-name-coding-system default-file-name-coding-system))) + ;; This binding is for encoding arguements by call-process. + (coding-system-for-write coding-system-for-read) (result (if wildcard ;; Run ls in the directory of the file pattern we asked for. @@ -3016,9 +3018,7 @@ switches (mapconcat 'identity switches " ")) " -- " - (encode-coding-string - pattern - file-name-coding-system t)))) + pattern))) ;; SunOS 4.1.3, SVr4 and others need the "." to list the ;; directory if FILE is a symbolic link. (apply 'call-process @@ -3039,11 +3039,9 @@ ;; Avoid lossage if FILE starts with `-'. '("--") (list - (encode-coding-string - (if full-directory-p - (concat (file-name-as-directory file) ".") - file) - file-name-coding-system t)))))))) + (if full-directory-p + (concat (file-name-as-directory file) ".") + file)))))))) (if (/= result 0) ;; We get here if ls failed. ;; Access the file to get a suitable error.