doc: Update (ice-9 match) reference.
authorLudovic Courtès <ludo@gnu.org>
Tue, 27 Sep 2011 11:46:35 +0000 (13:46 +0200)
committerLudovic Courtès <ludo@gnu.org>
Tue, 27 Sep 2011 11:46:35 +0000 (13:46 +0200)
* doc/ref/match.texi (Pattern Matching): Document `***', `..1', and
  `__1'; remove `..k' and `__k'.  Reported by Chris K. Jester-Young.

doc/ref/match.texi

index b6acf14..05e6642 100644 (file)
@@ -122,11 +122,14 @@ pat ::= identifier                      anything, and binds identifier
       | (set! identifier)               anything, and binds setter
       | (get! identifier)               anything, and binds getter
       | `qp                             a quasi-pattern
+      | (identifier *** pat)            matches pat in a tree and binds
+                                        identifier to the path leading
+                                        to the object that matches pat
 
 ooo ::= ...                             zero or more
       | ___                             zero or more
-      | ..k                             k or more
-      | __k                             k or more
+      | ..1                             1 or more
+      | __1                             1 or more
 
         quasi-patterns:                 matches: