allow at least one space between tokens

This commit is contained in:
Holger Vogt 2023-04-09 09:51:48 +02:00
parent 20ba622d44
commit 230e8d5993
1 changed files with 2 additions and 1 deletions

View File

@ -685,7 +685,8 @@ static void inp_stitch_continuation_lines(struct card* working)
firsttime = FALSE;
}
else {
sadd(&newline, s + 1);
*s = ' ';
sadd(&newline, s);
*s = '*';
}