aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney2007-07-22 22:53:48 +0000
committerJason Rumney2007-07-22 22:53:48 +0000
commit4fc066e16472fe985ebc34eb9b2b4e37a53a074c (patch)
tree8e6e705776b7e92c4281e0cb3cbe53b2d0d986d8
parente81ab986428e7c45c3e7ac2ae6bf52f39dfcefbf (diff)
downloademacs-4fc066e16472fe985ebc34eb9b2b4e37a53a074c.tar.gz
emacs-4fc066e16472fe985ebc34eb9b2b4e37a53a074c.zip
(set-default-process-coding-system): Use dos line ends
for input to cmdproxy on all versions of Windows. Use dos line ends for input to plink.
-rw-r--r--lisp/w32-fns.el21
1 files changed, 13 insertions, 8 deletions
diff --git a/lisp/w32-fns.el b/lisp/w32-fns.el
index 26aafeb27fc..fc5afd76664 100644
--- a/lisp/w32-fns.el
+++ b/lisp/w32-fns.el
@@ -149,14 +149,19 @@ You should set this to t when using a non-system shell.\n\n"))))
149 (if default-enable-multibyte-characters 149 (if default-enable-multibyte-characters
150 '(undecided-dos . undecided-unix) 150 '(undecided-dos . undecided-unix)
151 '(raw-text-dos . raw-text-unix))) 151 '(raw-text-dos . raw-text-unix)))
152 (or (w32-using-nt) 152 ;; Make cmdproxy default to using DOS line endings for input,
153 ;; On Windows 9x, make cmdproxy default to using DOS line endings 153 ;; because some Windows programs (including command.com) require it.
154 ;; for input, because command.com requires this. 154 (add-to-list 'process-coding-system-alist
155 (setq process-coding-system-alist 155 `("[cC][mM][dD][pP][rR][oO][xX][yY]"
156 `(("[cC][mM][dD][pP][rR][oO][xX][yY]" 156 . ,(if default-enable-multibyte-characters
157 . ,(if default-enable-multibyte-characters 157 '(undecided-dos . undecided-dos)
158 '(undecided-dos . undecided-dos) 158 '(raw-text-dos . raw-text-dos))))
159 '(raw-text-dos . raw-text-dos))))))) 159 ;; plink needs DOS input when entering the password.
160 (add-to-list 'process-coding-system-alist
161 `("[pP][lL][iI][nN][kK]"
162 . ,(if default-enable-multibyte-characters
163 '(undecided-dos . undecided-dos)
164 '(raw-text-dos . raw-text-dos)))))
160 165
161(add-hook 'before-init-hook 'set-default-process-coding-system) 166(add-hook 'before-init-hook 'set-default-process-coding-system)
162 167