guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-85-g1d1447


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-85-g1d14478
Date: Sat, 09 Feb 2013 17:19:37 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=1d14478ffb2e7b2f9790d34f8c03376abc0675f8

The branch, stable-2.0 has been updated
       via  1d14478ffb2e7b2f9790d34f8c03376abc0675f8 (commit)
       via  ff95e1022586f40276ea37c0d5b05a370b327be6 (commit)
       via  9cdc5cdbe6c3cdc4ae649016b8673cf038b5294e (commit)
       via  d4cab459d3a479af12ad2bb37ebbead0d6806802 (commit)
      from  d4124ac5cecb017f949ecfc10095645c3e79d989 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1d14478ffb2e7b2f9790d34f8c03376abc0675f8
Author: Andy Wingo <address@hidden>
Date:   Sat Feb 9 18:19:28 2013 +0100

    (texinfo): add a command-spec for @math{}.
    
    * module/texinfo.scm (texi-command-specs): Add `math' as inline-text.

commit ff95e1022586f40276ea37c0d5b05a370b327be6
Author: Andy Wingo <address@hidden>
Date:   Sat Feb 9 18:19:06 2013 +0100

    (texinfo docbook): informaltable is a block element.
    
    * module/texinfo/docbook.scm (*sdocbook-block-commands*): informaltable
      is a block element.

commit 9cdc5cdbe6c3cdc4ae649016b8673cf038b5294e
Author: Andy Wingo <address@hidden>
Date:   Sat Feb 9 18:18:28 2013 +0100

    (texinfo plain-text): Pass @math{} through as-is.
    
    * module/texinfo/plain-text.scm (tag-handlers): Pass `math' through
      as-is.

commit d4cab459d3a479af12ad2bb37ebbead0d6806802
Author: Andy Wingo <address@hidden>
Date:   Sat Feb 9 18:17:48 2013 +0100

    (texinfo serialize): don't break words when wrapping
    
    * module/texinfo/serialize.scm (wrap): Don't break long words by
      default; that could break @-commands.

-----------------------------------------------------------------------

Summary of changes:
 module/texinfo.scm            |    3 ++-
 module/texinfo/docbook.scm    |    2 +-
 module/texinfo/plain-text.scm |    3 ++-
 module/texinfo/serialize.scm  |    5 +++--
 4 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/module/texinfo.scm b/module/texinfo.scm
index 519db48..edee5b3 100644
--- a/module/texinfo.scm
+++ b/module/texinfo.scm
@@ -1,6 +1,6 @@
 ;;;; (texinfo) -- parsing of texinfo into SXML
 ;;;;
-;;;;   Copyright (C) 2009, 2010, 2011, 2012  Free Software Foundation, Inc.
+;;;;   Copyright (C) 2009, 2010, 2011, 2012, 2013  Free Software Foundation, 
Inc.
 ;;;;    Copyright (C) 2004, 2009 Andy Wingo <wingo at pobox dot com>
 ;;;;    Copyright (C) 2001,2002 Oleg Kiselyov <oleg at pobox dot com>
 ;;;;
@@ -187,6 +187,7 @@ lambda. Only present for @code{INLINE-ARGS}, 
@code{EOL-ARGS},
     (sample             INLINE-TEXT)
     (samp               INLINE-TEXT)
     (code               INLINE-TEXT)
+    (math               INLINE-TEXT)
     (kbd                INLINE-TEXT)
     (key                INLINE-TEXT)
     (var                INLINE-TEXT)
diff --git a/module/texinfo/docbook.scm b/module/texinfo/docbook.scm
index c5a8d65..f3f993d 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 87e43e5..83e5e38 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 1436ad5..d0c6f50 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"


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]