diff options
Diffstat (limited to 'module/texinfo')
-rw-r--r-- | module/texinfo/docbook.scm | 2 | ||||
-rw-r--r-- | module/texinfo/plain-text.scm | 3 | ||||
-rw-r--r-- | module/texinfo/serialize.scm | 5 |
3 files changed, 6 insertions, 4 deletions
diff --git a/module/texinfo/docbook.scm b/module/texinfo/docbook.scm index c5a8d659f..f3f993db8 100644 --- a/module/texinfo/docbook.scm +++ b/module/texinfo/docbook.scm @@ -135,7 +135,7 @@ each other. @xref{texinfo docbook sdocbook-flatten,,sdocbook-flatten}, for more information." '(para programlisting informalexample indexterm variablelist orderedlist refsect1 refsect2 refsect3 refsect4 title example - note itemizedlist)) + note itemizedlist informaltable)) (define (inline-command? command) (not (memq command *sdocbook-block-commands*))) diff --git a/module/texinfo/plain-text.scm b/module/texinfo/plain-text.scm index 87e43e5bb..83e5e38f9 100644 --- a/module/texinfo/plain-text.scm +++ b/module/texinfo/plain-text.scm @@ -1,6 +1,6 @@ ;;;; (texinfo plain-text) -- rendering stexinfo as plain text ;;;; -;;;; Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc. +;;;; Copyright (C) 2009, 2010, 2011, 2013 Free Software Foundation, Inc. ;;;; Copyright (C) 2003,2004,2009 Andy Wingo <wingo at pobox dot com> ;;;; ;;;; This library is free software; you can redistribute it and/or @@ -238,6 +238,7 @@ (sample ,code) (samp ,code) (code ,code) + (math ,passthrough) (kbd ,code) (key ,key) (var ,var) diff --git a/module/texinfo/serialize.scm b/module/texinfo/serialize.scm index 1436ad5f9..d0c6f50e5 100644 --- a/module/texinfo/serialize.scm +++ b/module/texinfo/serialize.scm @@ -1,6 +1,6 @@ ;;;; (texinfo serialize) -- rendering stexinfo as texinfo ;;;; -;;;; Copyright (C) 2009, 2012 Free Software Foundation, Inc. +;;;; Copyright (C) 2009, 2012, 2013 Free Software Foundation, Inc. ;;;; Copyright (C) 2003,2004,2009 Andy Wingo <wingo at pobox dot com> ;;;; ;;;; This library is free software; you can redistribute it and/or @@ -185,7 +185,8 @@ (define (wrap strings) (fill-string (string-concatenate strings) - #:line-width 72)) + #:line-width 72 + #:break-long-words? #f)) (define (paragraph exp lp command type formals args accum) (list* "\n\n" |