From febe4a74038c751a6f5d62324b0e3ec1625afe97 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 11 May 2021 16:20:20 -0400 Subject: [PATCH] Fix #5035: assocate *.beancount with beancount-mode Otherwise, use-package implicitly associates *.beancount with a function called `beancount`, which does not exist. --- modules/lang/beancount/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/beancount/config.el b/modules/lang/beancount/config.el index 07d483243..dfd0696bb 100644 --- a/modules/lang/beancount/config.el +++ b/modules/lang/beancount/config.el @@ -1,7 +1,7 @@ ;;; lang/beancount/config.el -*- lexical-binding: t; -*- (use-package! beancount - :mode "\\.beancount\\'" + :mode ("\\.beancount\\'" . beancount-mode) :init (add-hook 'beancount-mode-hook #'outline-minor-mode)