Merge pull request #147 from mmirate/patch-1
* mu-sexp-convert: Fix conversion of elisp times.
This commit is contained in:
@ -89,7 +89,7 @@ into a list of pairs
|
||||
|
||||
(define (etime->time_t t)
|
||||
"Convert elisp time object T into a time_t value."
|
||||
(logior (ash (car t) 16) (car t)))
|
||||
(logior (ash (car t) 16) (car (cdr t))))
|
||||
|
||||
(define (sexp->xml)
|
||||
"Convert string INPUT to XML, return the XML (string)."
|
||||
|
||||
Reference in New Issue
Block a user