# HG changeset patch # User james # Date 1052540332 0 # Node ID 0b318c558de8ff8cea92098c9b537c782e97de79 # Parent 1364f9716d7bf30e57f66d93037e648cd5c39735 [xemacs-hg @ 2003-05-10 04:18:52 by james] Don't autodetect EOL type on keyboard streams. diff -r 1364f9716d7b -r 0b318c558de8 lisp/ChangeLog --- a/lisp/ChangeLog Sat May 10 02:57:07 2003 +0000 +++ b/lisp/ChangeLog Sat May 10 04:18:52 2003 +0000 @@ -1,3 +1,10 @@ +2003-05-08 Jerry James + + * code-init.el (coding-system-variable-default-value-table): Use + undecided-unix for keyboards to avoid EOL autodetection on TTYs. + * code-init.el (coding-system-variable-default-value): Update the + comment to reflect the changed table. + 2003-05-03 Steve Youngs * package-admin.el (package-admin-find-top-directory): You can't diff -r 1364f9716d7b -r 0b318c558de8 lisp/code-init.el --- a/lisp/code-init.el Sat May 10 02:57:07 2003 +0000 +++ b/lisp/code-init.el Sat May 10 04:18:52 2003 +0000 @@ -79,7 +79,7 @@ (native binary binary binary raw-text-dos mswindows-multibyte-system-default-dos) (keyboard - binary raw-text undecided raw-text undecided) + binary raw-text undecided-unix raw-text undecided-unix) ;; the `terminal' coding system is used for output to stderr. such ;; streams do automatic lf->crlf encoding in the C library, so we need ;; to not do the same translations ourselves. @@ -158,16 +158,16 @@ The table of default values looks like this: (see below for abbreviations) - Unix Unix+EOL Unix+Mule MSW MSW+Mule ------------------------------------------------------------------------------- -bfcs-for-read binary raw-text undecided raw-text undecided -default bfcs binary binary iso-2022-8 raw-text-dos MSW-MB-dos -native binary binary binary raw-text-dos MSW-MB-SD-dos -keyboard binary raw-text undecided raw-text undecided -terminal binary binary binary binary MSW-MB-unix -process-read binary raw-text undecided raw-text undecided -process-write binary binary binary raw-text MSW-MB-SD -no-conv-cs binary raw-text raw-text raw-text MSW-MB + Unix Unix+EOL Unix+Mule MSW MSW+Mule +----------------------------------------------------------------------------- +bfcs-for-read binary raw-text undecided raw-text undecided +default bfcs binary binary iso-2022-8 raw-text-dos MSW-MB-dos +native binary binary binary raw-text-dos MSW-MB-SD-dos +keyboard binary raw-text undecided-unix raw-text undecided-unix +terminal binary binary binary binary MSW-MB-unix +process-read binary raw-text undecided raw-text undecided +process-write binary binary binary raw-text MSW-MB-SD +no-conv-cs binary raw-text raw-text raw-text MSW-MB VAR can be one of: (abbreviations in parens)