From ec6bc763eefc8c352fe4bbb4b0c0feb6115642a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Mon, 9 Nov 2020 01:35:39 +0100 Subject: use BREAK enum instead of 1 --- tea.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tea.c b/tea.c index 5c60ce9..4cfe41a 100644 --- a/tea.c +++ b/tea.c @@ -108,7 +108,7 @@ int left() {} void breakline() { prn("\r\n"); - types[src_l] = 1; + types[src_l] = BREAK; x = 1; if (y == h) yorig--; else y++; -- cgit v1.2.3