aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.c b/main.c
index 66d908e..aae574d 100644
--- a/main.c
+++ b/main.c
@@ -17,6 +17,7 @@
#include "foci.h"
#include <ctype.h>
+#include <stdbool.h>
#include <stdio.h>
#include <string.h>
@@ -55,6 +56,7 @@ int main()
*s++ = c;
c = getchar();
} while (isgraph(c));
+ bool eol = c == '\n' || c == '\r';
*s = '\0';
if (strcmp(buf, "bye") == 0)
@@ -62,7 +64,8 @@ int main()
parse_word(buf, s);
- printf(compiling() ? "compiled <%d>\n" : "ok <%d>\n", depth());
+ if (eol)
+ printf(compiling() ? "compiled <%d>\n" : "ok <%d>\n", depth());
}
return 0;