Emacs: fix error when checking if beancount is available
1 file changed, 2 insertions(+), 1 deletion(-)
jump to
M emacs/.emacs.d/main.el → emacs/.emacs.d/main.el
@@ -1791,7 +1791,8 @@ ;;;;;; Beancount ;; #+BEGIN_SRC emacs-lisp (let ((beancount-dir (car (split-string (shell-command-to-string "ghq list --full-path beancount"))))) - (when (file-directory-p beancount-dir) + (when (and beancount-dir + (file-directory-p beancount-dir)) (add-to-list 'load-path (expand-file-name "editors/emacs/" beancount-dir)) (use-package beancount