Mercurial > emacs
changeset 14327:0df217c5842d
(server-process-filter): Pass proper format string to message.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 25 Jan 1996 00:56:54 +0000 |
parents | e5799768c51b |
children | 5d0e329a44d8 |
files | lisp/server.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/server.el Thu Jan 25 00:56:48 1996 +0000 +++ b/lisp/server.el Thu Jan 25 00:56:54 1996 +0000 @@ -191,7 +191,7 @@ ;; 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)))