original commit: dc639df1da0f41ba42258cd3822d4b0372fbd0cb
This commit is contained in:
Jay McCarthy 2011-05-05 15:51:54 -06:00
parent 7d9255f949
commit b7cd18d881

View File

@ -129,7 +129,7 @@
[(? char-alphabetic?)
(define string-tag (read-until (λ (c) (char=? c #\,)) ip))
(hash-ref STRING-DB string-tag
(λ () (error 'read-value "Unknown string constant ~v" string-tag)))]
(λ () string-tag))]
[c
(error 'read-value "Parsing value, expected {, got ~v" c)]))
@ -144,8 +144,7 @@
(λ ()
(bibtex-parse (current-input-port)))))
(printf "~v\n" (hash-count bibdb))
(error 'path->bibdb pth)
#f)
bibdb)
(path->bibdb "/Users/jay/Dev/scm/github.jeapostrophe/work/papers/etc/all.bib")