comparison lisp/mule/mule-init.el @ 120:cca96a509cfe r20-1b12

Import from CVS: tag r20-1b12
author cvs
date Mon, 13 Aug 2007 09:25:29 +0200
parents fe104dbd9147
children 43dd3413c7c7
comparison
equal deleted inserted replaced
119:d101af7320b8 120:cca96a509cfe
126 ;; Make sure ls -l output is readable by dired and encoded using 126 ;; Make sure ls -l output is readable by dired and encoded using
127 ;; pathname-coding-system 127 ;; pathname-coding-system
128 (add-hook 128 (add-hook
129 'dired-mode-hook 129 'dired-mode-hook
130 (lambda () 130 (lambda ()
131 (make-local-variable 'process-output-coding-system)
132 (make-local-variable 'process-input-coding-system)
133 (setq process-output-coding-system pathname-coding-system)
134 (setq process-input-coding-system pathname-coding-system)
135 (make-local-variable 'process-environment) 131 (make-local-variable 'process-environment)
136 (setenv "LC_MESSAGES" "C") 132 (setenv "LC_MESSAGES" "C")
137 (setenv "LC_TIME" "C")))) 133 (setenv "LC_TIME" "C"))))
138 ) 134 )
139 135