diff options
author | Craig Earls <enderw88@gmail.com> | 2013-03-25 13:35:59 -0400 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2013-03-25 13:35:59 -0400 |
commit | e5525130c023862a58277c248047c3e1cc80d613 (patch) | |
tree | 919701537676508885286021c455d040df3b4c77 /lisp/ldg-complete.el | |
parent | d3fe4c666ff37912245d2a0386ac749737f34843 (diff) | |
download | fork-ledger-e5525130c023862a58277c248047c3e1cc80d613.tar.gz fork-ledger-e5525130c023862a58277c248047c3e1cc80d613.tar.bz2 fork-ledger-e5525130c023862a58277c248047c3e1cc80d613.zip |
Improve complete-all and reconcile saving
Diffstat (limited to 'lisp/ldg-complete.el')
-rw-r--r-- | lisp/ldg-complete.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ldg-complete.el b/lisp/ldg-complete.el index a8e73b88..7e37163b 100644 --- a/lisp/ldg-complete.el +++ b/lisp/ldg-complete.el @@ -155,7 +155,7 @@ Does not use ledger xact" (setq rest-of-name (match-string 3)) ;; Start copying the postings (forward-line) - (while (looking-at "^\\s-+") + (while (looking-at ledger-post-account-regex) (setq xacts (cons (buffer-substring-no-properties (line-beginning-position) (line-end-position)) |