From 012a40661d3f6c733b4f8467ff0952821eedaef2 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 28 Feb 2013 00:21:13 +0100 Subject: acmproc: Fix typo in `author' markup writer. * src/guile/skribilo/package/acmproc.scm (le)[&latex-author]: Use `(format #t ...)', not #f. --- src/guile/skribilo/package/acmproc.scm | 4 ++-- 1 file 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") -- cgit v1.2.3