From: Stefan Monnier Date: Wed, 23 Apr 2008 15:37:07 +0000 (+0000) Subject: (server-start): Also don't get confused by CRs since we X-Git-Tag: emacs-pretest-23.0.90~6094 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1b0a6c68e67b0f1246e4ebdb0c7791e0ae8d4b48;p=emacs.git (server-start): Also don't get confused by CRs since we don't quote them. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3c5a1e6994e..9ac6b7a541f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-04-23 Stefan Monnier + + * server.el (server-start): Also don't get confused by CRs since we + don't quote them. + 2008-04-12 Nick Roberts * progmodes/gdb-ui.el (gdb-init-buffer): New function. diff --git a/lisp/server.el b/lisp/server.el index 90adaace156..88bb8cd769d 100644 --- a/lisp/server.el +++ b/lisp/server.el @@ -500,8 +500,9 @@ kill any existing server communications subprocess." :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