]> git.eshelyaron.com Git - emacs.git/commitdiff
* eglot.el (eglot--lambda): add missing indent spec.
authorJoão Távora <joaotavora@gmail.com>
Thu, 17 May 2018 13:04:33 +0000 (14:04 +0100)
committerJoão Távora <joaotavora@gmail.com>
Thu, 17 May 2018 13:05:15 +0000 (14:05 +0100)
lisp/progmodes/eglot.el

index e17e4f8766e23a49ef51ef092e8342ab708da5e9..30d5b435bbf093ecd4cf1758b2c644108a219e9e 100644 (file)
@@ -610,7 +610,7 @@ request request and a process object.")
   (not (eglot--outstanding-edits-p)))
 
 (cl-defmacro eglot--lambda (cl-lambda-list &body body)
-  (declare (debug (sexp &rest form)))
+  (declare (indent 1) (debug (sexp &rest form)))
   (let ((e (gensym "eglot--lambda-elem")))
     `(lambda (,e) (apply (cl-function (lambda ,cl-lambda-list ,@body)) ,e))))