From: João Távora Date: Sun, 8 Jul 2018 23:33:50 +0000 (+0100) Subject: * eglot.el (eglot-completion-at-point): fix broken indentation X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~477 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=03caf3bb27603d2c75269ed6f2c5db85da115cc2;p=emacs.git * eglot.el (eglot-completion-at-point): fix broken indentation --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 396590f6fd0..26c52d31f30 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -1216,10 +1216,10 @@ DUMMY is ignored." (items (if (vectorp resp) resp (plist-get resp :items)))) (mapcar (jsonrpc-lambda (&rest all &key label insertText &allow-other-keys) - (let ((insert (or insertText label))) - (add-text-properties 0 1 all insert) - (put-text-property 0 1 'eglot--lsp-completion all insert) - insert)) + (let ((insert (or insertText label))) + (add-text-properties 0 1 all insert) + (put-text-property 0 1 'eglot--lsp-completion all insert) + insert)) items)))) :annotation-function (lambda (obj)