--- lbbs/src/article_post.c 2025/06/15 04:46:19 1.17 +++ lbbs/src/article_post.c 2025/06/15 06:19:21 1.18 @@ -764,7 +764,7 @@ int article_reply(const SECTION_LIST *p_ { mysql_close(db); db = NULL; - + clearscr(); moveto(1, 1); prints("¸ÃÖ÷Ìâл¾ø»Ø¸´"); @@ -828,6 +828,11 @@ int article_reply(const SECTION_LIST *p_ len += 2; memcpy(content + len, content_f + line_offsets[i], (size_t)(line_offsets[i + 1] - line_offsets[i])); len += (line_offsets[i + 1] - line_offsets[i]); + if (content[len - 1] != '\n') // Appennd \n if not exist + { + content[len] = '\n'; + len++; + } } if (content[len - 1] != '\n') // Appennd \n if not exist {