* srfi-modules.texi (SRFI-1 Set Operations): use @cross iso. @times.

* guile.texi: add @cross for @tex
This commit is contained in:
Han-Wen Nienhuys 2005-04-04 09:38:13 +00:00
commit 9aa0c3dd94
3 changed files with 10 additions and 2 deletions

View 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.

View 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

View 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.