diff options
author | Craig Earls <enderw88@gmail.com> | 2014-09-13 18:20:03 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2014-09-13 18:20:03 -0700 |
commit | 7846e7c17ae31fdf71bea093e7410b90e284c04d (patch) | |
tree | 47958b5897fcb3c05613889d219cf7bcf1a0214d /lisp/ledger-occur.el | |
parent | 84dc532b0688431d0964736f6a5d7b3804b5e903 (diff) | |
download | ledger-7846e7c17ae31fdf71bea093e7410b90e284c04d.tar.gz ledger-7846e7c17ae31fdf71bea093e7410b90e284c04d.tar.bz2 ledger-7846e7c17ae31fdf71bea093e7410b90e284c04d.zip |
All navigation functions moved to ledger-navigate.
Reduce several overlapping functions.
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 9287ed13..0851307e 100644 --- a/lisp/ledger-occur.el +++ b/lisp/ledger-occur.el @@ -164,7 +164,7 @@ Used for coordinating `ledger-occur' with other buffers, like reconcile." ;; if something found (when (setq endpoint (re-search-forward regex nil 'end)) (save-excursion - (let ((bounds (ledger-find-xact-extents (match-beginning 0)))) + (let ((bounds (ledger-navigate-find-xact-extents (match-beginning 0)))) (push bounds lines) (setq curpoint (cadr bounds)))) ;; move to the end of ;; the xact, no need to |