diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-31T17·09+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-31T17·09+0000 |
commit | 9210d4d530b68b5f19ac7062f129c88ccdc03e04 (patch) | |
tree | 7c6033dba3915c1f16bde9a72531157f6f1eebac /src/fix-ng/parser.cc | |
parent | f1c1a3c97f1dc81b2d9b19f58589b4b8a5ed196e (diff) |
* Working evaluator.
* Mutually recursive attribute sets. * Print evaluator efficiency statistics.
Diffstat (limited to 'src/fix-ng/parser.cc')
-rw-r--r-- | src/fix-ng/parser.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fix-ng/parser.cc b/src/fix-ng/parser.cc index d146ad88cbc3..d310397c2d63 100644 --- a/src/fix-ng/parser.cc +++ b/src/fix-ng/parser.cc @@ -40,7 +40,7 @@ struct Cleanup : TermFun string path(s); if (path[0] != '/') path = basePath + "/" + path; - return ATmake("Str(<str>)", canonPath(path).c_str()); + return ATmake("Path(<str>)", canonPath(path).c_str()); } if (ATmatch(e, "Int(<str>)", &s)) { |