diff options
| author | Paul Eggert | 2017-09-10 09:20:27 -0700 |
|---|---|---|
| committer | Paul Eggert | 2017-09-10 09:24:37 -0700 |
| commit | cdef84fb6893f69ffee1a99fe82a262e02e59bf5 (patch) | |
| tree | f26e8fe49677db19be4fad553ebf123d7b4bd478 /lisp/progmodes | |
| parent | 4973788c6aa2636407b34da840088f635ba6914a (diff) | |
| download | emacs-cdef84fb6893f69ffee1a99fe82a262e02e59bf5.tar.gz 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')
| -rw-r--r-- | lisp/progmodes/cc-langs.el | 4 | ||||
| -rw-r--r-- | lisp/progmodes/executable.el | 4 |
2 files changed, 4 insertions, 4 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." | |||
| 1185 | (make-obsolete-variable 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix | 1185 | (make-obsolete-variable 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix |
| 1186 | "CC Mode 5.31.4, 2006-04-14") | 1186 | "CC Mode 5.31.4, 2006-04-14") |
| 1187 | 1187 | ||
| 1188 | (c-lang-defconst c-ambiguous-overloadable-or-identifier-prefices | 1188 | (c-lang-defconst c-ambiguous-overloadable-or-identifier-prefixes |
| 1189 | ;; A list of strings which can be either overloadable operators or | 1189 | ;; A list of strings which can be either overloadable operators or |
| 1190 | ;; identifier prefixes. | 1190 | ;; identifier prefixes. |
| 1191 | t (c--intersection | 1191 | t (c--intersection |
| @@ -1199,7 +1199,7 @@ This regexp is assumed to not match any non-operator identifier." | |||
| 1199 | ;; A regexp matching strings which can be either overloadable operators | 1199 | ;; A regexp matching strings which can be either overloadable operators |
| 1200 | ;; or identifier prefixes. | 1200 | ;; or identifier prefixes. |
| 1201 | t (c-make-keywords-re | 1201 | t (c-make-keywords-re |
| 1202 | t (c-lang-const c-ambiguous-overloadable-or-identifier-prefices))) | 1202 | t (c-lang-const c-ambiguous-overloadable-or-identifier-prefixes))) |
| 1203 | (c-lang-defvar c-ambiguous-overloadable-or-identifier-prefix-re | 1203 | (c-lang-defvar c-ambiguous-overloadable-or-identifier-prefix-re |
| 1204 | (c-lang-const c-ambiguous-overloadable-or-identifier-prefix-re)) | 1204 | (c-lang-const c-ambiguous-overloadable-or-identifier-prefix-re)) |
| 1205 | 1205 | ||
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el index 7c040e74955..ebdb516de18 100644 --- a/lisp/progmodes/executable.el +++ b/lisp/progmodes/executable.el | |||
| @@ -228,8 +228,8 @@ executable." | |||
| 228 | (and argument (string< "" argument) " ") | 228 | (and argument (string< "" argument) " ") |
| 229 | argument)) | 229 | argument)) |
| 230 | 230 | ||
| 231 | ;; For backward compatibilty, allow `executable-prefix-env' to be | 231 | ;; For backward compatibility, allow `executable-prefix-env' to be |
| 232 | ;; overriden by custom `executable-prefix'. | 232 | ;; overridden by custom `executable-prefix'. |
| 233 | (if (string-match "#!\\([ \t]*/usr/bin/env[ \t]*\\)?$" executable-prefix) | 233 | (if (string-match "#!\\([ \t]*/usr/bin/env[ \t]*\\)?$" executable-prefix) |
| 234 | (if executable-prefix-env | 234 | (if executable-prefix-env |
| 235 | (setq argument (concat "/usr/bin/env " | 235 | (setq argument (concat "/usr/bin/env " |