]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix eglot--error and eglot--message helpers
authorJoão Távora <joaotavora@gmail.com>
Thu, 17 May 2018 13:04:15 +0000 (14:04 +0100)
committerJoão Távora <joaotavora@gmail.com>
Thu, 17 May 2018 13:05:15 +0000 (14:05 +0100)
* eglot.el (eglot--error, eglot--message):
Safely interpret %s.

lisp/progmodes/eglot.el

index 30d5b435bbf093ecd4cf1758b2c644108a219e9e..01a6b5d47f1a08ccf1a47ed1a80739e88c6b3e4b 100644 (file)
@@ -721,11 +721,11 @@ DEFERRED is passed to `eglot--async-request', which see."
 ;;;
 (defun eglot--error (format &rest args)
   "Error out with FORMAT with ARGS."
-  (error (apply #'format format args)))
+  (error "[eglot] %s" (apply #'format format args)))
 
 (defun eglot--message (format &rest args)
   "Message out with FORMAT with ARGS."
-  (message (concat "[eglot] " (apply #'format format args))))
+  (message "[eglot] %s" (apply #'format format args)))
 
 (defun eglot--warn (format &rest args)
   "Warning message with FORMAT and ARGS."