]> git.eshelyaron.com Git - emacs.git/commitdiff
Unbreak imenu
authorJoão Távora <joaotavora@gmail.com>
Tue, 22 Oct 2019 11:18:53 +0000 (12:18 +0100)
committerJoão Távora <joaotavora@gmail.com>
Tue, 22 Oct 2019 11:18:53 +0000 (12:18 +0100)
* eglot.el (eglot-imenu): Unbreak.

lisp/progmodes/eglot.el

index e29d88857742b81bca80307fee517c25f69ad3e5..9a0960d7a961cc2d2d287321b2e98869ec9dd516 100644 (file)
@@ -2252,10 +2252,11 @@ If SKIP-SIGNATURE, don't try to send textDocument/signatureHelp."
          :deferred :textDocument/documentHighlight))))
   eldoc-last-message)
 
-(defun eglot-imenu (oldfun)
-  "EGLOT's `imenu-create-index-function' overriding OLDFUN."
-  (if (eglot--server-capable :documentSymbolProvider)
-      (let ((entries
+(defun eglot-imenu ()
+  "EGLOT's `imenu-create-index-function'."
+  (unless (eglot--server-capable :documentSymbolProvider)
+    (eglot--error "Server isn't a :documentSymbolProvider"))
+  (let ((entries
              (mapcar
               (eglot--lambda
                   ((SymbolInformation) name kind location containerName)
@@ -2283,7 +2284,7 @@ If SKIP-SIGNATURE, don't try to send textDocument/signatureHelp."
                                           elems)))))
          (seq-group-by (lambda (e) (get-text-property 0 :kind (car e)))
                        entries)))
-    (funcall oldfun)))
+  )
 
 (defun eglot--apply-text-edits (edits &optional version)
   "Apply EDITS for current buffer if at VERSION, or if it's nil."