Removed print.

This commit is contained in:
Neil 2022-07-05 20:51:17 -07:00
parent 2b320eb040
commit 4122fc3407
1 changed files with 0 additions and 4 deletions

View File

@ -221,13 +221,9 @@ int main(int argc, char **argv) {
if(!(lex = lex_array_new(&page->lexx))) goto syntax; if(!(lex = lex_array_new(&page->lexx))) goto syntax;
if(!lex_next(lex)) { if(!lex_next(lex)) {
if(lex->symbol != END) { errno = EILSEQ; goto syntax; } if(lex->symbol != END) { errno = EILSEQ; goto syntax; }
/*printf("Lexing finished: %s on %lu.\n",
lex_symbols[lex->symbol], lex->line);*/
break; break;
} }
} }
/* Transfer the temporary page to the journal. */
page = 0;
continue; continue;
syntax: syntax:
fprintf(stderr, "On date: %d-%.2d-%.2d.\n", *y, *m, *d); fprintf(stderr, "On date: %d-%.2d-%.2d.\n", *y, *m, *d);