diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/etags.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index 84ed03e375f..6639ac4f235 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -314,7 +314,7 @@ static long readline_internal (linebuffer *, FILE *); | |||
| 314 | static bool nocase_tail (const char *); | 314 | static bool nocase_tail (const char *); |
| 315 | static void get_tag (char *, char **); | 315 | static void get_tag (char *, char **); |
| 316 | 316 | ||
| 317 | static void analyse_regex (char *); | 317 | static void analyze_regex (char *); |
| 318 | static void free_regexps (void); | 318 | static void free_regexps (void); |
| 319 | static void regex_tag_multiline (void); | 319 | static void regex_tag_multiline (void); |
| 320 | static void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2); | 320 | static void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2); |
| @@ -1207,7 +1207,7 @@ main (int argc, char **argv) | |||
| 1207 | lang = argbuffer[i].lang; | 1207 | lang = argbuffer[i].lang; |
| 1208 | break; | 1208 | break; |
| 1209 | case at_regexp: | 1209 | case at_regexp: |
| 1210 | analyse_regex (argbuffer[i].what); | 1210 | analyze_regex (argbuffer[i].what); |
| 1211 | break; | 1211 | break; |
| 1212 | case at_filename: | 1212 | case at_filename: |
| 1213 | this_file = argbuffer[i].what; | 1213 | this_file = argbuffer[i].what; |
| @@ -5573,7 +5573,7 @@ scan_separators (char *name) | |||
| 5573 | /* Look at the argument of --regex or --no-regex and do the right | 5573 | /* Look at the argument of --regex or --no-regex and do the right |
| 5574 | thing. Same for each line of a regexp file. */ | 5574 | thing. Same for each line of a regexp file. */ |
| 5575 | static void | 5575 | static void |
| 5576 | analyse_regex (char *regex_arg) | 5576 | analyze_regex (char *regex_arg) |
| 5577 | { | 5577 | { |
| 5578 | if (regex_arg == NULL) | 5578 | if (regex_arg == NULL) |
| 5579 | { | 5579 | { |
| @@ -5604,7 +5604,7 @@ analyse_regex (char *regex_arg) | |||
| 5604 | pfatal (regexfile); | 5604 | pfatal (regexfile); |
| 5605 | linebuffer_init (®exbuf); | 5605 | linebuffer_init (®exbuf); |
| 5606 | while (readline_internal (®exbuf, regexfp) > 0) | 5606 | while (readline_internal (®exbuf, regexfp) > 0) |
| 5607 | analyse_regex (regexbuf.buffer); | 5607 | analyze_regex (regexbuf.buffer); |
| 5608 | free (regexbuf.buffer); | 5608 | free (regexbuf.buffer); |
| 5609 | fclose (regexfp); | 5609 | fclose (regexfp); |
| 5610 | } | 5610 | } |