aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès2015-10-12 14:23:38 +0200
committerLudovic Courtès2015-10-12 14:23:38 +0200
commitd8d0d7cca22c207f4134c6761bc262981de61fba (patch)
tree0cfa9309e13bed853c1cd0dd92f6a5b3f3949c44
parent06122df1b248508488baaa55f7b3fecd8ab81bbc (diff)
downloadskribilo-d8d0d7cca22c207f4134c6761bc262981de61fba.tar.gz
skribilo-d8d0d7cca22c207f4134c6761bc262981de61fba.tar.lz
skribilo-d8d0d7cca22c207f4134c6761bc262981de61fba.zip
biblio: template: Fix a couple of erroneous quotes.
* src/guile/skribilo/biblio/template.scm (make-bib-entry-template/default): Change quote to quasiquote for forms that contain an unquote.
-rw-r--r--src/guile/skribilo/biblio/template.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guile/skribilo/biblio/template.scm b/src/guile/skribilo/biblio/template.scm
index 6cbeed8..fc23b82 100644
--- a/src/guile/skribilo/biblio/template.scm
+++ b/src/guile/skribilo/biblio/template.scm
@@ -156,13 +156,13 @@
(", " month) " " year
(", pp. " pages) "."))
((article)
- '(author ". " (or title url documenturl) ". "
+ `(author ". " (or title url documenturl) ". "
,(_ "In ") journal ", " volume
("(" number ") ")", "
(address ", ") month " " year ", "
("pp. " pages) "."))
((inproceedings)
- '(author ". " (or title url documenturl) ". "
+ `(author ". " (or title url documenturl) ". "
,(_ "In ") booktitle ", "
(series ", ")
("(" number ")")