branch: elpa/beancount commit 5ff509075daf07942311172c44f3973de1229178 Author: Martin Blais <bl...@furius.ca> Commit: Martin Blais <bl...@furius.ca>
Fixes to /etc --- etc/emacsrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/emacsrc b/etc/emacsrc index 0d7e90a78b..cc062907fd 100644 --- a/etc/emacsrc +++ b/etc/emacsrc @@ -4,7 +4,7 @@ ;; ;; Add local emacs-lisp extension to load-path and load it. -(add-to-list 'load-path (concat project-current "/editors/emacs")) +(add-to-list 'load-path project-current) (require 'beancount) ;; Automatically open .beancount files in beancount-mode. @@ -78,7 +78,7 @@ (defvar beancount-journal-command (concat "select date, flag, maxwidth(description, 80), position, balance " - "where account = '%s'"))I + "where account = '%s'")) (defun beancount-query-journal-at-point () "Run a journal command for the account at point."