]> git.eshelyaron.com Git - emacs.git/commitdiff
; fix warning about order of defvaralias/defconst
authorJoão Távora <joaotavora@gmail.com>
Thu, 20 Oct 2022 12:49:49 +0000 (13:49 +0100)
committerJoão Távora <joaotavora@gmail.com>
Thu, 20 Oct 2022 12:49:49 +0000 (13:49 +0100)
* lisp/progmodes/eglot.el (eglot-{}): Declare alias before thing
  being aliased.

lisp/progmodes/eglot.el

index 901bf30d4bd5ec64ca18b16df789c884abbf1199..0a7cb2a9aacc030abb82b2bd0217143e8a70f071 100644 (file)
@@ -406,8 +406,8 @@ This can be useful when using docker to run a language server.")
   `((1 . eglot-diagnostic-tag-unnecessary-face)
     (2 . eglot-diagnostic-tag-deprecated-face)))
 
-(defconst eglot--{} (make-hash-table :size 1) "The empty JSON object.")
 (defvaralias 'eglot-{} 'eglot--{})
+(defconst eglot--{} (make-hash-table :size 1) "The empty JSON object.")
 
 (defun eglot--executable-find (command &optional remote)
   "Like Emacs 27's `executable-find', ignore REMOTE on Emacs 26."