summaryrefslogtreecommitdiff
path: root/lisp/ldg-sort.el
diff options
context:
space:
mode:
authorCraig Earls <enderw88@gmail.com>2013-04-03 16:30:36 -0700
committerCraig Earls <enderw88@gmail.com>2013-04-03 16:30:36 -0700
commit1a52899673f02b87b065c5b29755394581b485c9 (patch)
tree17c5d8e1c07a2678d7fae00490fac49576343655 /lisp/ldg-sort.el
parent519e57ca1fac01ea057bea8263c6cb06a8ac4e7e (diff)
downloadledger-1a52899673f02b87b065c5b29755394581b485c9.tar.gz
ledger-1a52899673f02b87b065c5b29755394581b485c9.tar.bz2
ledger-1a52899673f02b87b065c5b29755394581b485c9.zip
Fix copy-at-point and more regex consolidation and cleanup
Diffstat (limited to 'lisp/ldg-sort.el')
-rw-r--r--lisp/ldg-sort.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ldg-sort.el b/lisp/ldg-sort.el
index b106173b..f426a7ef 100644
--- a/lisp/ldg-sort.el
+++ b/lisp/ldg-sort.el
@@ -28,8 +28,8 @@
(defun ledger-next-record-function ()
"Move point to next transaction."
- (if (re-search-forward ledger-sort-next-record-regex
- nil t)
+ (if (re-search-forward ledger-payee-any-status-regex
+ nil t)
(goto-char (match-beginning 0))
(goto-char (point-max))))