geiser: fix lint error

Emacs 30 emit errors when the body of `when` is empty.
This commit is contained in:
condy 2023-01-21 23:23:50 +08:00
parent 52eb2dd754
commit 5047285052
1 changed files with 1 additions and 11 deletions

View File

@ -98,17 +98,7 @@
(kbd "C-t") 'geiser-pop-symbol-stack
"gZ" 'geiser-mode-switch-to-repl-and-enter
"gz" 'geiser-mode-switch-to-repl
"K" 'geiser-doc-symbol-at-point)
(when evil-collection-want-find-usages-bindings
;; FIXME:
;; ("Callers" ((kbd "C-c <")) geiser-xref-callers
;; :enable (and (geiser-eval--supported-p 'callers)
;; (geiser--symbol-at-point)))
;; ("Callees" ((kbd "C-c >")) geiser-xref-callees
;; :enable (and (geiser-eval--supported-p 'callees)
;; (geiser--symbol-at-point)))
))
"K" 'geiser-doc-symbol-at-point))
(provide 'evil-collection-geiser)
;;; evil-collection-geiser.el ends here