mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
(server-process-filter): Pass proper format string to message.
This commit is contained in:
parent
e26a12ac8c
commit
26544100fa
@ -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)))
|
||||
|
Loading…
Reference in New Issue
Block a user