diff options
| author | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:56:54 +0000 |
|---|---|---|
| committer | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:56:54 +0000 |
| commit | 26544100fa650d01438291943b9e1c1e46258aab (patch) | |
| tree | 63c035dbade93bca89f734daec13452dd11675ba | |
| parent | e26a12ac8c4b072d7821ef075f662cde4f74f459 (diff) | |
| download | emacs-26544100fa650d01438291943b9e1c1e46258aab.tar.gz | |
(server-process-filter): Pass proper format string to message.
| -rw-r--r-- | lisp/server.el | 2 |
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))) |
