From 641bd4512ff02b1b86157263ab604bc790f0c89d Mon Sep 17 00:00:00 2001 From: "umbraticus@prosimetrum.com" Date: Fri, 29 Apr 2022 05:31:30 +0000 Subject: [PATCH] sam: ignore autoindent in cmd window --- sys/src/cmd/samterm/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/src/cmd/samterm/main.c b/sys/src/cmd/samterm/main.c index fe5dbab93..9dda7582e 100644 --- a/sys/src/cmd/samterm/main.c +++ b/sys/src/cmd/samterm/main.c @@ -540,8 +540,7 @@ type(Flayer *l, int res) /* what a bloody mess this is */ *p++ = ' '; } else *p++ = c; - if(autoindent) - if(c == '\n'){ + if(c == '\n' && autoindent && t != &cmd){ /* autoindent */ int cursor, ch; cursor = ctlu(&t->rasp, 0, a+(p-buf)-1);