* srfi-modules.texi (SRFI-1 Set Operations): use @cross iso. @times.
authorHan-Wen Nienhuys <hanwen@lilypond.org>
Mon, 4 Apr 2005 09:38:13 +0000 (09:38 +0000)
committerHan-Wen Nienhuys <hanwen@lilypond.org>
Mon, 4 Apr 2005 09:38:13 +0000 (09:38 +0000)
* guile.texi: add @cross for @tex

doc/ref/ChangeLog
doc/ref/guile.texi
doc/ref/srfi-modules.texi

index cdd90bc..76528c1 100644 (file)
@@ -1,3 +1,9 @@
+2005-04-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * srfi-modules.texi (SRFI-1 Set Operations): use @cross iso. @times.
+
+       * guile.texi: add @cross for @tex
+
 2005-04-02  Kevin Ryde  <user42@zip.com.au>
 
        * guile.texi (@times): New macro.
index c57ca56..1bd300f 100644 (file)
@@ -87,9 +87,11 @@ section entitled ``GNU Free Documentation License''.
 
 @c  @cross{} is a \times symbol in tex, or an "x" in info.  In tex it works
 @c  inside or outside $ $.
+@macro cross
 @tex
 \gdef\cross{\ifmmode\times\else$\times$\fi}
 @end tex
+@end macro
 @ifnottex
 @macro cross
 x
@@ -137,7 +139,7 @@ x
 @comment The title is printed in a large font.
 @title Guile Reference Manual
 @subtitle Edition @value{MANUAL-EDITION}, for use with Guile @value{VERSION}
-@c @subtitle $Id: guile.texi,v 1.40 2005-03-04 14:22:41 mvo Exp $
+@c @subtitle $Id: guile.texi,v 1.41 2005-04-04 09:38:13 hanwen Exp $
 
 @c See preface.texi for the list of authors
 @author The Guile Developers
index dd86e9d..a29784d 100644 (file)
@@ -986,7 +986,7 @@ Lists can be used to represent sets of objects.  The procedures in
 this section operate on such lists as sets.
 
 Note that lists are not an efficient way to implement large sets.  The
-procedures here typically take time @math{@var{m}@times{}@var{n}} when
+procedures here typically take time @math{@var{m}@cross{}@var{n}} when
 operating on @var{m} and @var{n} element lists.  Other data structures
 like trees, bitsets (@pxref{Bit Vectors}) or hash tables (@pxref{Hash
 Tables}) are faster.