summaryrefslogtreecommitdiff
path: root/lisp/ldg-mode.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/ldg-mode.el')
-rw-r--r--lisp/ldg-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ldg-mode.el b/lisp/ldg-mode.el
index 95b02fdd..df277ee0 100644
--- a/lisp/ldg-mode.el
+++ b/lisp/ldg-mode.el
@@ -132,8 +132,8 @@ customizable to ease retro-entry.")
(< (nth 1 t1) (nth 1 t2)))))
(defun ledger-time-subtract (t1 t2)
- "Subtract two time values.
-Return the difference in the format of a time value."
+ "Subtract two time values. Return the difference in the format
+ of a time value."
(let ((borrow (< (cadr t1) (cadr t2))))
(list (- (car t1) (car t2) (if borrow 1 0))
(- (+ (if borrow 65536 0) (cadr t1)) (cadr t2)))))