diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -10,10 +10,17 @@ Datum *evalline(Rune *); Biobuf *stdin; void -main(void) +main(int argc, char *argv[]) { int off = 0; stdin = Bfdopen(0, OREAD); + traceeval = 0; + + ARGBEGIN{ + case 't': + traceeval = 1; + break; + }ARGEND while(!off){ Rune *input = prompt(L"\t"); |