Skip to content
Snippets Groups Projects
Commit 60a5a3cb authored by rswindell's avatar rswindell
Browse files

@eof@ (all-caps) is now another way to insert a premature EOF marker for a

display file.
parent 66715684
No related branches found
No related tags found
No related merge requests found
......@@ -247,6 +247,8 @@ char sbbs_t::putmsg(const char *buf, long mode)
if(str[l]==ESC && str[l+1]=='$') /* WIP command */
lncntr=0;
if(str[l]=='@' && !(mode&P_NOATCODES)) {
if(memcmp(str+l, "@EOF@", 5) == 0)
break;
/* In HTML mode, defer PAUSE and MORE to end and supress message */
if(mode&P_HTML) {
if(!memcmp(str+l,"@MORE@",6)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment