about summary refs log tree commit diff
path: root/seq.c
diff options
context:
space:
mode:
Diffstat (limited to 'seq.c')
-rw-r--r--seq.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/seq.c b/seq.c
index f1fb6b1..9ff7f59 100644
--- a/seq.c
+++ b/seq.c
@@ -266,8 +266,10 @@ parse_subthread(char *map, long a, long *stopo)
 
 	for (s = map, line = 0; s; s = t+1) {
 		t = strchr(s, '\n');
-		if (!t)
+		if (!t) {
+			minindent = -1;
 			break;
+		}
 		line++;
 		int indent = 0;
 		while (*s && iswsp(*s)) {