scriblb/bibtex: fix author parsing

Closes #2.
This commit is contained in:
Matthew Flatt 2015-03-26 13:33:36 -06:00
parent 76e3ed8ec3
commit 5ab18e0db8

View File

@ -221,13 +221,16 @@
[(list one) (org-author-name one)]
[(list one two) (author-name one two)]
[(list-rest first rest)
(author-name first (apply string-append (add-between rest " ")))])))))
(author-name (apply string-append (add-between (cons first (drop-right rest 1))
" "))
(last rest))])))))
(module+ test
(require rackunit)
;; use this as a predicate to hack around lack of
;; ability to use equal? on author element structs
;; ability to use equal? on author element structs;
;; unfortunately, it ony compares the composed strings
(define (print-as-equal-string? a b)
(equal? (format "~s" a)
(format "~s" b)))