1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Document (ice-9 and-let-star)

* doc/ref/srfi-modules.texi: note that (srfi srfi-2) is the same as
  (ice-9 and-let-star).
This commit is contained in:
Noah Lavine 2012-06-30 08:42:44 -04:00 committed by Andy Wingo
parent 1321a36ed6
commit abd731fff7

View file

@ -1237,6 +1237,12 @@ The following syntax can be obtained with
(use-modules (srfi srfi-2))
@end lisp
or alternatively
@lisp
(use-modules (ice-9 and-let-star))
@end lisp
@deffn {library syntax} and-let* (clause @dots{}) body @dots{}
A combination of @code{and} and @code{let*}.