mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
(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.
This commit is contained in:
parent
e81ab98642
commit
4fc066e164
1 changed files with 13 additions and 8 deletions
|
|
@ -149,14 +149,19 @@ You should set this to t when using a non-system shell.\n\n"))))
|
|||
(if default-enable-multibyte-characters
|
||||
'(undecided-dos . undecided-unix)
|
||||
'(raw-text-dos . raw-text-unix)))
|
||||
(or (w32-using-nt)
|
||||
;; On Windows 9x, make cmdproxy default to using DOS line endings
|
||||
;; for input, because command.com requires this.
|
||||
(setq process-coding-system-alist
|
||||
`(("[cC][mM][dD][pP][rR][oO][xX][yY]"
|
||||
. ,(if default-enable-multibyte-characters
|
||||
'(undecided-dos . undecided-dos)
|
||||
'(raw-text-dos . raw-text-dos)))))))
|
||||
;; Make cmdproxy default to using DOS line endings for input,
|
||||
;; because some Windows programs (including command.com) require it.
|
||||
(add-to-list 'process-coding-system-alist
|
||||
`("[cC][mM][dD][pP][rR][oO][xX][yY]"
|
||||
. ,(if default-enable-multibyte-characters
|
||||
'(undecided-dos . undecided-dos)
|
||||
'(raw-text-dos . raw-text-dos))))
|
||||
;; plink needs DOS input when entering the password.
|
||||
(add-to-list 'process-coding-system-alist
|
||||
`("[pP][lL][iI][nN][kK]"
|
||||
. ,(if default-enable-multibyte-characters
|
||||
'(undecided-dos . undecided-dos)
|
||||
'(raw-text-dos . raw-text-dos)))))
|
||||
|
||||
(add-hook 'before-init-hook 'set-default-process-coding-system)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue