summaryrefslogtreecommitdiff
path: root/lisp/server.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-25 00:56:54 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-25 00:56:54 +0000
commit26544100fa650d01438291943b9e1c1e46258aab (patch)
tree63c035dbade93bca89f734daec13452dd11675ba /lisp/server.el
parente26a12ac8c4b072d7821ef075f662cde4f74f459 (diff)
downloademacs-26544100fa650d01438291943b9e1c1e46258aab.tar.gz
(server-process-filter): Pass proper format string to message.
Diffstat (limited to 'lisp/server.el')
-rw-r--r--lisp/server.el2
1 files changed, 1 insertions, 1 deletions
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)))