From: Idir Lankri Date: Fri, 14 Apr 2023 13:52:24 +0000 (+0200) Subject: ; Eglot: fix a typo in a customization type X-Git-Tag: emacs-29.0.91~129 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1456adf4248;p=emacs.git ; Eglot: fix a typo in a customization type * lisp/progmodes/eglot.el (eglot-ignored-server-capabilities): Fix the value associated with the tag "Go to declaration". (Bug#62849) Copyright-paperwork-exempt: yes --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 4943b44107a..9b499b944cd 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -1673,7 +1673,7 @@ under cursor." (const :tag "Go to definition" :definitionProvider) (const :tag "Go to type definition" :typeDefinitionProvider) (const :tag "Go to implementation" :implementationProvider) - (const :tag "Go to declaration" :implementationProvider) + (const :tag "Go to declaration" :declarationProvider) (const :tag "Find references" :referencesProvider) (const :tag "Highlight symbols automatically" :documentHighlightProvider) (const :tag "List symbols in buffer" :documentSymbolProvider)