projects
/
elisp
/
liece.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19f88c8
)
* liece-misc.el (liece-time-difference): Fix the arglist.
author
ueno
<ueno>
Fri, 5 Oct 2001 21:10:29 +0000
(21:10 +0000)
committer
ueno
<ueno>
Fri, 5 Oct 2001 21:10:29 +0000
(21:10 +0000)
[cf. <Liece:45>]
lisp/liece-misc.el
patch
|
blob
|
history
diff --git
a/lisp/liece-misc.el
b/lisp/liece-misc.el
index
6018850
..
51830c2
100644
(file)
--- a/
lisp/liece-misc.el
+++ b/
lisp/liece-misc.el
@@
-432,7
+432,7
@@
found))
;;; stolen (and renamed) from time-date.el.
-(defun liece-time-difference (t0 t1)
+(defun liece-time-difference (t1 t2)
"Subtract two internal times."
(let ((borrow (< (cadr t1) (cadr t2))))
(list (- (car t1) (car t2) (if borrow 1 0))