Mercurial > emacs
changeset 94295:11c1515dc9e3
(server-start): Also don't get confused by CRs since we
don't quote them.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 23 Apr 2008 15:37:07 +0000 |
parents | 3554f94ae564 |
children | f6d5eb496a39 |
files | lisp/ChangeLog lisp/server.el |
diffstat | 2 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Apr 23 08:54:31 2008 +0000 +++ b/lisp/ChangeLog Wed Apr 23 15:37:07 2008 +0000 @@ -1,3 +1,8 @@ +2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca> + + * server.el (server-start): Also don't get confused by CRs since we + don't quote them. + 2008-04-12 Nick Roberts <nickrob@snap.net.nz> * progmodes/gdb-ui.el (gdb-init-buffer): New function.
--- a/lisp/server.el Wed Apr 23 08:54:31 2008 +0000 +++ b/lisp/server.el Wed Apr 23 15:37:07 2008 +0000 @@ -500,8 +500,9 @@ :filter 'server-process-filter ;; We must receive file names without being decoded. ;; Those are decoded by server-process-filter according - ;; to file-name-coding-system. - :coding 'raw-text + ;; to file-name-coding-system. Also don't get + ;; confused by CRs since we don't quote them. + :coding 'raw-text-unix ;; The other args depend on the kind of socket used. (if server-use-tcp (list :family nil