summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès2013-02-28 00:21:13 +0100
committerLudovic Courtès2013-02-28 00:21:13 +0100
commit012a40661d3f6c733b4f8467ff0952821eedaef2 (patch)
tree5c048f2ce3bae28042367fd19898bb7751ce3b2b
parenteb72415c4f195def711d9e979b8288be41481a44 (diff)
downloadskribilo-012a40661d3f6c733b4f8467ff0952821eedaef2.tar.gz
skribilo-012a40661d3f6c733b4f8467ff0952821eedaef2.tar.lz
skribilo-012a40661d3f6c733b4f8467ff0952821eedaef2.zip
acmproc: Fix typo in `author' markup writer.
* src/guile/skribilo/package/acmproc.scm (le)[&latex-author]: Use
  `(format #t ...)', not #f.
-rw-r--r--src/guile/skribilo/package/acmproc.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guile/skribilo/package/acmproc.scm b/src/guile/skribilo/package/acmproc.scm
index 8facf3e..9929c85 100644
--- a/src/guile/skribilo/package/acmproc.scm
+++ b/src/guile/skribilo/package/acmproc.scm
@@ -52,12 +52,12 @@
    (markup-writer '&latex-author le
       :before (lambda (n e)
 		 (let ((body (markup-body n)))
-		    (format #f "\\numberofauthors{~a}\n\\author{\n"
+		    (format #t "\\numberofauthors{~a}\n\\author{\n"
 			    (if (pair? body) (length body) 1))))
       :action (lambda (n e)
 		 (let ((body (markup-body n)))
 		    (for-each (lambda (a)
-				 (display "\\alignauthor\n")
+                                 (display "\\alignauthor\n")
 				 (output a e))
 			      (if (pair? body) body (list body)))))
       :after "}\n")