diff options
| author | Paul Eggert | 2014-12-13 23:40:04 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-12-13 23:41:33 -0800 |
| commit | 3de474e4ac7418d06b9f37489f939a16d9bde1c2 (patch) | |
| tree | cbcba843251af8de054f3a1166f30fb3434e635e /lib-src | |
| parent | 2e7f6d53f3831bdf8c96a630abca2f926fc45aae (diff) | |
| download | emacs-3de474e4ac7418d06b9f37489f939a16d9bde1c2.tar.gz emacs-3de474e4ac7418d06b9f37489f939a16d9bde1c2.zip | |
Spelling fixes
All uses changed.
* lib-src/etags.c (analyze_regex): Rename from analyse_regex.
* lisp/cedet/semantic/lex-spp.el:
(semantic-lex-spp-analyzer-do-replace):
Rename from semantic-lex-spp-anlyzer-do-replace.
* lisp/emacs-lisp/cconv.el (cconv--analyze-use):
Rename from cconv--analyse-use.
(cconv--analyze-function): Rename from cconv--analyse-function.
(cconv-analyze-form): Rename from cconv-analyse-form.
* src/regex.c (analyze_first): Rename from analyze_first.
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 | } |