summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2014-01-02 19:00:37 +0100
committerMoritz Ulrich <moritz@tarn-vedra.de>2014-01-02 19:00:37 +0100
commit741a275cc99f73521e9588798a21f62aebf7fa7c (patch)
treee6f03a43fb5c9b33052be54147abca9ac0635c15 /lisp
parent8406adce0ec2afd8cd933c8d5172781bded42fc8 (diff)
downloadfork-ledger-741a275cc99f73521e9588798a21f62aebf7fa7c.tar.gz
fork-ledger-741a275cc99f73521e9588798a21f62aebf7fa7c.tar.bz2
fork-ledger-741a275cc99f73521e9588798a21f62aebf7fa7c.zip
Use `ledger-read-date' where applicable.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ledger-xact.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/ledger-xact.el b/lisp/ledger-xact.el
index f65e5ed6..db642605 100644
--- a/lisp/ledger-xact.el
+++ b/lisp/ledger-xact.el
@@ -135,8 +135,7 @@ MOMENT is an encoded date"
(defun ledger-copy-transaction-at-point (date)
"Ask for a new DATE and copy the transaction under point to that date. Leave point on the first amount."
(interactive (list
- (read-string "Copy to date: " (ledger-year-and-month)
- 'ledger-minibuffer-history)))
+ (ledger-read-date "Copy to date: ")))
(let* ((here (point))
(extents (ledger-find-xact-extents (point)))
(transaction (buffer-substring-no-properties (car extents) (cadr extents)))
@@ -167,7 +166,9 @@ If INSERT-AT-POINT is non-nil insert the transaction
there, otherwise call `ledger-xact-find-slot' to insert it at the
correct chronological place in the buffer."
(interactive (list
- (read-string "Transaction: " (ledger-year-and-month))))
+ ;; Note: This isn't "just" the date - it can contain
+ ;; other text too
+ (ledger-read-date "Transaction: ")))
(let* ((args (with-temp-buffer
(insert transaction-text)
(eshell-parse-arguments (point-min) (point-max))))