aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorPaul Eggert2014-12-13 23:40:04 -0800
committerPaul Eggert2014-12-13 23:41:33 -0800
commit3de474e4ac7418d06b9f37489f939a16d9bde1c2 (patch)
treecbcba843251af8de054f3a1166f30fb3434e635e /lib-src
parent2e7f6d53f3831bdf8c96a630abca2f926fc45aae (diff)
downloademacs-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.c8
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 *);
314static bool nocase_tail (const char *); 314static bool nocase_tail (const char *);
315static void get_tag (char *, char **); 315static void get_tag (char *, char **);
316 316
317static void analyse_regex (char *); 317static void analyze_regex (char *);
318static void free_regexps (void); 318static void free_regexps (void);
319static void regex_tag_multiline (void); 319static void regex_tag_multiline (void);
320static void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2); 320static 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. */
5575static void 5575static void
5576analyse_regex (char *regex_arg) 5576analyze_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 (&regexbuf); 5605 linebuffer_init (&regexbuf);
5606 while (readline_internal (&regexbuf, regexfp) > 0) 5606 while (readline_internal (&regexbuf, 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 }