Skip to content

Commit

Permalink
typo in flags handling
Browse files Browse the repository at this point in the history
the -S (highlighted completion background) was saved as
-s (highlighted completion foreground color)
  • Loading branch information
omar-polo committed Apr 10, 2020
1 parent 4261c47 commit d4a19d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mymenu.c
Original file line number Diff line number Diff line change
Expand Up @@ -2080,7 +2080,7 @@ main(int argc, char **argv)
fgs[2] = parse_color(optarg, NULL);
break;
case 'S':
fgs[2] = parse_color(optarg, NULL);
bgs[2] = parse_color(optarg, NULL);
break;
default:
fprintf(stderr, "Unrecognized option %c\n", ch);
Expand Down

0 comments on commit d4a19d8

Please sign in to comment.