1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00
This commit is contained in:
Dave Davenport 2015-12-14 20:28:25 +01:00
parent 541c653913
commit 04eebf964a

View file

@ -317,21 +317,21 @@ static int drun_token_match ( const Mode *data,
) )
{ {
DRunModePrivateData *rmpd = (DRunModePrivateData *) data->private_data; DRunModePrivateData *rmpd = (DRunModePrivateData *) data->private_data;
int match = 1; int match = 1;
if(tokens ) { if ( tokens ) {
for ( int j = 0; match && tokens != NULL && tokens[j] != NULL; j++ ) { for ( int j = 0; match && tokens != NULL && tokens[j] != NULL; j++ ) {
int test = 0; int test = 0;
char *ftokens[2] = { tokens[j], NULL }; char *ftokens[2] = { tokens[j], NULL };
if ( !test && rmpd->entry_list[index].name && if ( !test && rmpd->entry_list[index].name &&
token_match ( ftokens, rmpd->entry_list[index].name, not_ascii, case_sensitive ) ) { token_match ( ftokens, rmpd->entry_list[index].name, not_ascii, case_sensitive ) ) {
test =1; test = 1;
} }
if ( !test && rmpd->entry_list[index].generic_name && if ( !test && rmpd->entry_list[index].generic_name &&
token_match ( ftokens, rmpd->entry_list[index].generic_name, not_ascii, case_sensitive ) ) { token_match ( ftokens, rmpd->entry_list[index].generic_name, not_ascii, case_sensitive ) ) {
test =1; test = 1;
} }
if ( !test && token_match( ftokens, rmpd->entry_list[index].exec, not_ascii, case_sensitive)){ if ( !test && token_match ( ftokens, rmpd->entry_list[index].exec, not_ascii, case_sensitive ) ) {
test = 1; test = 1;
} }
if ( test == 0 ) { if ( test == 0 ) {