Fix arg type for expr_parse.
authorBen Pfaff <blp@gnu.org>
Fri, 4 Mar 2005 07:18:56 +0000 (07:18 +0000)
committerBen Pfaff <blp@gnu.org>
Fri, 4 Mar 2005 07:18:56 +0000 (07:18 +0000)
src/expressions/ChangeLog
src/expressions/parse.c

index 2cf04b36598d06fb1fff6654cac0cabe8da60010..07f4be6670c1fc6b2ab304bd3853cfdd0bd9b9bb 100644 (file)
@@ -1,3 +1,8 @@
+Thu Mar  3 23:17:51 2005  Ben Pfaff  <blp@gnu.org>
+
+       * parse.c: (expr_parse) Fix parameter type.  Thanks to John
+       Darrington <john@darrington.wattle.id.au> for reporting this bug.
+
 Thu Mar  3 22:10:25 WST 2005 John Darrington <john@darrington.wattle.id.au>
 
        * Makefile.am evaluate.h.pl evaluate.inc.pl operations.h.pl
index 2288d5277b6afb3e362ef00d979967219b09bc3e..ea3b06a5dbd18ce5fa8394aad8d1c83c2801e9a3 100644 (file)
@@ -66,7 +66,7 @@ static bool type_check (struct expression *, union any_node **,
    Returns the new expression if successful or a null pointer
    otherwise. */
 struct expression *
-expr_parse (struct dictionary *dict, atom_type type) 
+expr_parse (struct dictionary *dict, enum expr_type type) 
 {
   union any_node *n;
   struct expression *e;