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

The 'F'ind text command can now be used to change into SCAN_FIND mode

(display only messages with text string in them).
The 'F'ind text command now toggles off SCAN_FIND mode by default.
parent 7177accf
No related branches found
No related tags found
No related merge requests found
......@@ -304,6 +304,7 @@ int sbbs_t::scanposts(uint subnum, long mode, char *find)
{
char str[256],str2[256],reread=0,mismatches=0
,done=0,domsg=1,HUGE16 *buf,*p;
char find_buf[128];
char tmp[128];
int i;
uint usub,ugrp,reads=0;
......@@ -689,6 +690,7 @@ int sbbs_t::scanposts(uint subnum, long mode, char *find)
break;
case 'F': /* find text in messages */
domsg=0;
mode&=~SCAN_FIND; /* turn off find mode */
bprintf(text[StartWithN],smb.curmsg+2);
if((i=getnum(smb.msgs))<0)
break;
......@@ -697,9 +699,16 @@ int sbbs_t::scanposts(uint subnum, long mode, char *find)
else
i=smb.curmsg+1;
bputs(text[SearchStringPrompt]);
if(!getstr(str,40,K_LINE|K_UPPER))
if(!getstr(find_buf,40,K_LINE|K_UPPER))
break;
searchposts(subnum,post,(long)i,smb.msgs,str);
if(yesno(text[DisplaySubjectsOnlyQ]))
searchposts(subnum,post,(long)i,smb.msgs,find_buf);
else {
smb.curmsg=i;
find=find_buf;
mode|=SCAN_FIND;
domsg=1;
}
break;
case 'I': /* Sub-board information */
domsg=0;
......
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