diff options
author | Ludovic Courtès | 2015-05-29 00:44:37 +0200 |
---|---|---|
committer | Ludovic Courtès | 2015-05-29 00:44:37 +0200 |
commit | 2caaa21a736fba8e919db16a652731666071979b (patch) | |
tree | e92b6d0b13898619b6eb5d591ebcb40ed1c1215a /src/guile | |
parent | 7a05f6a42aa0314cbe4d302add7ef676d550369e (diff) | |
download | skribilo-2caaa21a736fba8e919db16a652731666071979b.tar.gz skribilo-2caaa21a736fba8e919db16a652731666071979b.tar.lz skribilo-2caaa21a736fba8e919db16a652731666071979b.zip |
latex: Don't emit \noindent for paragraphs.
* src/guile/skribilo/engine/latex.scm (paragraph): Remove \noindent.
Diffstat (limited to 'src/guile')
-rw-r--r-- | src/guile/skribilo/engine/latex.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/guile/skribilo/engine/latex.scm b/src/guile/skribilo/engine/latex.scm index 67d8a4e..ea63924 100644 --- a/src/guile/skribilo/engine/latex.scm +++ b/src/guile/skribilo/engine/latex.scm @@ -1,7 +1,7 @@ ;;; latex.scm -- LaTeX engine. ;;; -*- coding: iso-8859-1 -*- ;;; -;;; Copyright 2007, 2009, 2012 Ludovic Courtès <ludo@gnu.org> +;;; Copyright 2007, 2009, 2012, 2015 Ludovic Courtès <ludo@gnu.org> ;;; Copyright 2003, 2004 Manuel Serrano ;;; ;;; @@ -753,8 +753,7 @@ :before (lambda (n e) (when (and (>= (*debug*) 2) (location? (ast-loc n))) (format #t "\n\\makebox[\\linewidth][l]{\\hspace{-1.5cm}\\footnotesize{$\\triangleright$\\textit{~a}}}\n" - (ast-location n))) - (display "\\noindent ")) + (ast-location n)))) :after "\\par\n") ;*---------------------------------------------------------------------*/ |