From 26544100fa650d01438291943b9e1c1e46258aab Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 25 Jan 1996 00:56:54 +0000 Subject: [PATCH] (server-process-filter): Pass proper format string to message. --- lisp/server.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/server.el b/lisp/server.el index ccd20026c97..5dc51cb7e39 100644 --- a/lisp/server.el +++ b/lisp/server.el @@ -191,7 +191,7 @@ Prefix arg means just kill any existing server communications subprocess." ;; Remove this line from STRING. (setq string (substring string (match-end 0))) (if (string-match "^Error: " request) - (message (concat "Server error: " (substring request (match-end 0)))) + (message "Server error: %s" (substring request (match-end 0))) (if (string-match "^Client: " request) (progn (setq request (substring request (match-end 0))) -- 2.39.2