diff options
author | Craig Earls <enderw88@gmail.com> | 2014-11-14 17:22:04 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2014-11-14 17:22:04 -0700 |
commit | 312b7ffa72787762de630bd750efd35f65d11c8d (patch) | |
tree | b5733f29e6d153da7a612eeb6ea550668920cca3 /lisp/ledger-occur.el | |
parent | bd9fde2a40fb0ce7758f6dfa10384b3fdfa3c60e (diff) | |
download | fork-ledger-312b7ffa72787762de630bd750efd35f65d11c8d.tar.gz fork-ledger-312b7ffa72787762de630bd750efd35f65d11c8d.tar.bz2 fork-ledger-312b7ffa72787762de630bd750efd35f65d11c8d.zip |
Fix a bug the caused reconciliation to lock up in an automatic transaction was followed immediately with a virtual transaction on the same account.
This was related to the navigation changes push a while back.
Diffstat (limited to 'lisp/ledger-occur.el')
-rw-r--r-- | lisp/ledger-occur.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ledger-occur.el b/lisp/ledger-occur.el index cd7a2674..400967fe 100644 --- a/lisp/ledger-occur.el +++ b/lisp/ledger-occur.el @@ -160,7 +160,7 @@ Used for coordinating `ledger-occur' with other buffers, like reconcile." (while (not (eobp)) ;; if something found (when (setq endpoint (re-search-forward regex nil 'end)) - (setq bounds (ledger-navigate-find-xact-extents endpoint)) + (setq bounds (ledger-navigate-find-element-extents endpoint)) (push bounds lines) ;; move to the end of the xact, no need to search inside it more (goto-char (cadr bounds)))) |