diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-09-10 09:20:27 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-09-10 09:24:37 -0700 |
commit | cdef84fb6893f69ffee1a99fe82a262e02e59bf5 (patch) | |
tree | f26e8fe49677db19be4fad553ebf123d7b4bd478 /lisp/progmodes/cc-langs.el | |
parent | 4973788c6aa2636407b34da840088f635ba6914a (diff) | |
download | emacs-cdef84fb6893f69ffee1a99fe82a262e02e59bf5.tar.gz emacs-cdef84fb6893f69ffee1a99fe82a262e02e59bf5.tar.bz2 emacs-cdef84fb6893f69ffee1a99fe82a262e02e59bf5.zip |
Spelling fixes
* lisp/progmodes/cc-langs.el:
(c-ambiguous-overloadable-or-identifier-prefixes): Rename from
c-ambiguous-overloadable-or-identifier-prefices. Caller changed.
Diffstat (limited to 'lisp/progmodes/cc-langs.el')
-rw-r--r-- | lisp/progmodes/cc-langs.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el index d4eae06f290..8a4adf1f7fb 100644 --- a/lisp/progmodes/cc-langs.el +++ b/lisp/progmodes/cc-langs.el @@ -1185,7 +1185,7 @@ This regexp is assumed to not match any non-operator identifier." (make-obsolete-variable 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix "CC Mode 5.31.4, 2006-04-14") -(c-lang-defconst c-ambiguous-overloadable-or-identifier-prefices +(c-lang-defconst c-ambiguous-overloadable-or-identifier-prefixes ;; A list of strings which can be either overloadable operators or ;; identifier prefixes. t (c--intersection @@ -1199,7 +1199,7 @@ This regexp is assumed to not match any non-operator identifier." ;; A regexp matching strings which can be either overloadable operators ;; or identifier prefixes. t (c-make-keywords-re - t (c-lang-const c-ambiguous-overloadable-or-identifier-prefices))) + t (c-lang-const c-ambiguous-overloadable-or-identifier-prefixes))) (c-lang-defvar c-ambiguous-overloadable-or-identifier-prefix-re (c-lang-const c-ambiguous-overloadable-or-identifier-prefix-re)) |