changeset 16075:1fd0ed653ce6

(server-process-filter): Quote with &, not \.
author Richard M. Stallman <rms@gnu.org>
date Mon, 02 Sep 1996 17:43:56 +0000
parents 25cfff7ffced
children 5d1e0290bbd0
files lisp/server.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/server.el	Mon Sep 02 17:43:32 1996 +0000
+++ b/lisp/server.el	Mon Sep 02 17:43:56 1996 +0000
@@ -212,11 +212,11 @@
 		      (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