Skip to content

Commit

Permalink
Missing flag, this is now present on main.
Browse files Browse the repository at this point in the history
  • Loading branch information
katef committed Aug 20, 2024
1 parent 9668a76 commit c08782a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/rx/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -759,6 +759,10 @@ parse_flags(const char *arg, enum re_flags *flags)
{
for (; *arg; arg++) {
switch (*arg) {
case 'b':
*flags = *flags | RE_ANCHORED;
break;

case 'i':
*flags = *flags | RE_ICASE;
break;
Expand Down

0 comments on commit c08782a

Please sign in to comment.