diff options
author | Peter Mikkelsen <peter@pmikkelsen.com> | 2021-07-20 18:05:21 +0000 |
---|---|---|
committer | Peter Mikkelsen <peter@pmikkelsen.com> | 2021-07-20 18:05:21 +0000 |
commit | e6ce8b1d6da2434232b86c7c115d7ed4961e7f5c (patch) | |
tree | 28cf7e72f1b9892cc2649437c1aad7d837109fb7 /parser.c | |
parent | 1c840d5c5ab6326492542886297d5bafa2877c4d (diff) |
Add op/3 and current_op/3
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -281,7 +281,7 @@ parseoperators(Term *list) if(index == -1){ print("Can't parse, list of length %d contains no operators: ", length); for(i = 0; i < length; i++) - print("%S(%d) ", prettyprint(terms[i], 0, 0, 0, currentmod), infos[i].level); + print("%S(%d) ", prettyprint(terms[i], 0, 1, 0, currentmod), infos[i].level); print("\n"); syntaxerror_parser("parseoperators"); } |