From: Richard M. Stallman Date: Mon, 2 Sep 1996 17:43:56 +0000 (+0000) Subject: (server-process-filter): Quote with &, not \. X-Git-Tag: emacs-20.1~3869 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b59a6343c23f14a661644f1beebbce77de41ab06;p=emacs.git (server-process-filter): Quote with &, not \. --- diff --git a/lisp/server.el b/lisp/server.el index dbadb63418c..f4d3b7cb2de 100644 --- a/lisp/server.el +++ b/lisp/server.el @@ -212,11 +212,11 @@ Prefix arg means just kill any existing server communications subprocess." (setq pos 0) ;; Undo the quoting that emacsclient does ;; for certain special characters. - (while (string-match "\\\\." arg pos) + (while (string-match "&." arg pos) (setq pos (1+ (match-beginning 0))) (let ((nextchar (aref arg pos))) - (cond ((= nextchar ?\\) - (setq arg (replace-match "\\" t t arg))) + (cond ((= nextchar ?&) + (setq arg (replace-match "&" t t arg))) ((= nextchar ?-) (setq arg (replace-match "-" t t arg))) (t