Skip to content

Commit

Permalink
fixup! mcview: fix regex search.
Browse files Browse the repository at this point in the history
Signed-off-by: Yury V. Zaytsev <[email protected]>
  • Loading branch information
zyv committed Dec 15, 2024
1 parent dbaa49a commit a19a10c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/editor/editwidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ struct WEdit
/* search handler */
mc_search_t *search;
int replace_mode;
/* is search conditions should be started from BOL(^) or ended with EOL($) */
/* whether search conditions should be started with BOL(^) or ended with EOL($) */
mc_search_line_t search_line_type;

char *last_search_string; /* String that have been searched */
Expand Down
2 changes: 1 addition & 1 deletion src/viewer/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ struct WView
off_t search_start; /* First character to start searching from */
off_t search_end; /* Length of found string or 0 if none was found */
int search_numNeedSkipChar;
/* is search conditions should be started from BOL(^) or ended with EOL($) */
/* whether search conditions should be started with BOL(^) or ended with EOL($) */
mc_search_line_t search_line_type;

/* Markers */
Expand Down

0 comments on commit a19a10c

Please sign in to comment.