summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/ledger.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ledger.el b/lisp/ledger.el
index a2410db8..1c8aade3 100644
--- a/lisp/ledger.el
+++ b/lisp/ledger.el
@@ -568,7 +568,8 @@ dropped."
(let ((where (get-text-property (point) 'where))
(face (get-text-property (point) 'face)))
(if (and (eq face 'bold)
- (or (equal (car where) "<stdin>") (equal (car where) "/dev/stdin")))
+ (or (equal (car where) "<stdin>")
+ (equal (car where) "/dev/stdin")))
(with-current-buffer ledger-buf
(goto-char (cdr where))
(ledger-toggle-current 'cleared))))
@@ -581,7 +582,8 @@ dropped."
(items
(with-temp-buffer
(let ((exit-code
- (ledger-run-ledger buf "--uncleared --real" "emacs" account)))
+ (ledger-run-ledger buf "--uncleared" "--real"
+ "emacs" account)))
(when (= 0 exit-code)
(goto-char (point-min))
(unless (eobp)