<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -883,7 +883,7 @@ distribution.
  ;; output is either the keyword 'pass', the keyword 'fail' or an AST. The AST
  ;; specifies the structure of the expected tree, the names of the nodes and
  ;; the individual characters. If you don't want to specify the whole tree,
- ;; just use the wild-card symbol '*.' for the portion of the tree you want to
+ ;; just use the wild-card symbol '*' for the portion of the tree you want to
  ;; skip.
 
  &quot;&quot; ; &lt;- This is the input
@@ -896,18 +896,18 @@ distribution.
  fail ; &lt;- The keyword 'fail'
 
  &quot;A &lt;- 'a' B &lt;- 'b'&quot;
- (Grammar (Definition (Identifier #\A) *.)  ; &lt;- Here we skip some of
-          (Definition (Identifier #\B) *.)) ;    Definition's children
+ (Grammar (Definition (Identifier #\A) *)  ; &lt;- Here we skip some of
+          (Definition (Identifier #\B) *)) ;    Definition's children
 
  &quot;A &lt;- 'a'&quot;
- (Grammar (*.)) ; &lt;- Here we specify a child tree of any type
+ (Grammar (*)) ; &lt;- Here we specify a child tree of any type
 
  &quot;A &lt;- [a-z] *[a-z0-9]&quot;
- (Grammar (Definition (Identifier #\A) (LeftArrow) (Alternation *.)))
+ (Grammar (Definition (Identifier #\A) (LeftArrow) (Alternation *)))
 
  &quot;A &lt;- 'a'&quot;
  (Grammar (Definition (Identifier #\A)
-            (LeftArrow) (Alternation (Sequence (Unit (Literal #\a))))))
+            (LeftArrow) (Alternation (Sequence (Unit (Literal (LChar #\a)))))))
  )
 -------------------------------------------------------------------------------
 </diff>
      <filename>docs/book/book</filename>
    </modified>
    <modified>
      <diff>@@ -89,7 +89,7 @@ mzscheme
   (cond
    ((and (ast? result) (list? expect))
     (let ((type (car expect)) (child (cdr expect)))
-      (or (equal? type '*.)
+      (or (equal? type '*)
           (and (equal? (ast-t result) type) (children-match? (ast-c result) child)))))
    ((and (char? result) (char? expect) (char=? result expect)))
    (else #f)))
@@ -97,9 +97,9 @@ mzscheme
 
 (define (children-match? res expect)
   (if (null? res)
-      (or (null? expect) (equal? (car expect) '*.))
+      (or (null? expect) (equal? (car expect) '*))
       (and (not (null? expect))
-           (or (equal? (car expect) '*.)
+           (or (equal? (car expect) '*)
                (and (is-expected? (car res) (car expect))
                     (children-match? (cdr res) (cdr expect)))))))
 </diff>
      <filename>src/waxeye/tester.scm</filename>
    </modified>
    <modified>
      <diff>@@ -29,11 +29,11 @@
     System.out.println(${(get-expr)});
 }
 &quot;
- (template (string *.) (code *.) (string *.) (code *.) (string *.))
+ (template (string *) (code *) (string *) (code *) (string *))
 
  &quot;def ${(get-name)}(${(get-args)}):${(i)}
 ${(get-code)}${(u)}&quot;
- (template (string *.) (code *.) (string *.) (code *.) (string *.) (code *.) (string *.) (code *.) (code *.))
+ (template (string *) (code *) (string *) (code *) (string *) (code *) (string *) (code *) (code *))
 )
 
 (code</diff>
      <filename>test/grammars/templ.scm</filename>
    </modified>
    <modified>
      <diff>@@ -28,7 +28,7 @@
  ;; output is either the keyword 'pass', the keyword 'fail' or an AST. The AST
  ;; specifies the structure of the expected tree, the names of the nodes and
  ;; the individual characters. If you don't want to specify the whole tree,
- ;; just use the wild-card symbol '*.' for the portion of the tree you want to
+ ;; just use the wild-card symbol '*' for the portion of the tree you want to
  ;; skip.
 
  &quot;&quot; ; &lt;- This is the input
@@ -41,14 +41,14 @@
  fail ; &lt;- The keyword 'fail'
 
  &quot;A &lt;- 'a' B &lt;- 'b'&quot;
- (Grammar (Definition (Identifier #\A) *.)  ; &lt;- Here we skip some of
-          (Definition (Identifier #\B) *.)) ;    Definition's children
+ (Grammar (Definition (Identifier #\A) *)  ; &lt;- Here we skip some of
+          (Definition (Identifier #\B) *)) ;    Definition's children
 
  &quot;A &lt;- 'a'&quot;
- (Grammar (*.)) ; &lt;- Here we specify a child tree of any type
+ (Grammar (*)) ; &lt;- Here we specify a child tree of any type
 
  &quot;A &lt;- [a-z] *[a-z0-9]&quot;
- (Grammar (Definition (Identifier #\A) (LeftArrow) (Alternation *.)))
+ (Grammar (Definition (Identifier #\A) (LeftArrow) (Alternation *)))
 
  &quot;A &lt;- 'a'&quot;
  (Grammar (Definition (Identifier #\A)</diff>
      <filename>test/grammars/waxeye.scm</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>2c86bd9e71e8f70b2f6c638fa583f1894e0a0360</id>
    </parent>
  </parents>
  <author>
    <name>Orlando D. A. R. Hill</name>
    <email>orlandodarhill</email>
  </author>
  <url>http://github.com/orlandodarhill/waxeye/commit/395a0e2e42496ff40b98c204935e2c15e4f51bcc</url>
  <id>395a0e2e42496ff40b98c204935e2c15e4f51bcc</id>
  <committed-date>2008-11-10T11:08:49-08:00</committed-date>
  <authored-date>2008-11-10T11:08:49-08:00</authored-date>
  <message>Changed '*.' symbol in grammar tester to just '*'</message>
  <tree>381ad924cd4dc0ee690da5a82c4d4bdf7809b52f</tree>
  <committer>
    <name>Orlando D. A. R. Hill</name>
    <email>orlandodarhill</email>
  </committer>
</commit>
