Skip to content

Commit

Permalink
lang/emacs-lisp: fix wrong-num-args error on doc lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
hlissner committed Dec 27, 2019
1 parent 75c25fa commit e5fa19e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/lang/emacs-lisp/autoload.el
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ library/userland functions"
(defun +emacs-lisp-lookup-documentation (thing)
"Lookup THING with `helpful-variable' if it's a variable, `helpful-callable'
if it's callable, `apropos' otherwise."
(cond ((when-let (module (+emacs-lisp--module-at-point thing))
(cond ((when-let (module (+emacs-lisp--module-at-point))
(doom/help-modules (car module) (cadr module))
(when (eq major-mode 'org-mode)
(with-demoted-errors "%s"
Expand Down

0 comments on commit e5fa19e

Please sign in to comment.