1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00

Tell them to use 'provided?' instead of '*feaures*'.

This commit is contained in:
Marius Vollmer 2002-09-15 21:31:42 +00:00
parent f4232aa664
commit 6f663ebc8c
2 changed files with 10 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2002-09-15 Marius Vollmer <mvo@zagadka.ping.de>
* scheme-data.texi: Tell them to use 'provided?' instead of
'*feaures*'.
2002-09-09 Marius Vollmer <mvo@zagadka.ping.de> 2002-09-09 Marius Vollmer <mvo@zagadka.ping.de>
* scheme-ideas.texi (Creating a Procedure): Fixed typo. Thanks to * scheme-ideas.texi (Creating a Procedure): Fixed typo. Thanks to

View file

@ -1919,11 +1919,11 @@ an introduction can be found in the Emacs manual (@pxref{Regexps,
, Syntax of Regular Expressions, emacs, The GNU Emacs Manual}), or , Syntax of Regular Expressions, emacs, The GNU Emacs Manual}), or
in many general Unix reference books. in many general Unix reference books.
If your system does not include a POSIX regular expression library, and If your system does not include a POSIX regular expression library,
you have not linked Guile with a third-party regexp library such as Rx, and you have not linked Guile with a third-party regexp library such
these functions will not be available. You can tell whether your Guile as Rx, these functions will not be available. You can tell whether
installation includes regular expression support by checking whether the your Guile installation includes regular expression support by
@code{*features*} list includes the @code{regex} symbol. checking whether @code{(provided? 'regex)} returns true.
@menu @menu
* Regexp Functions:: Functions that create and match regexps. * Regexp Functions:: Functions that create and match regexps.