diff options
Diffstat (limited to 'lisp/progmodes/cc-langs.el')
-rw-r--r-- | lisp/progmodes/cc-langs.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el index 561aa0f7e5b..47e05438ea3 100644 --- a/lisp/progmodes/cc-langs.el +++ b/lisp/progmodes/cc-langs.el @@ -1440,7 +1440,7 @@ since CC Mode treats every identifier as an expression." (c-lang-defconst c-overloadable-operators "List of the operators that are overloadable, in their \"identifier -form\". See also `c-op-identifier-prefix'." +form\". See also `c-opt-op-identifier-prefix'." t nil c++ '("new" "delete" ;; Can be followed by "[]" but we ignore that. "+" "-" "*" "/" "%" @@ -2526,7 +2526,7 @@ their matching \"in\" syntactic symbols.") (c-lang-const c-brace-list-decl-kwds))) (c-lang-defconst c-defun-type-name-decl-key - ;; Regexp matching a keyword in `c-defun-name-decl-kwds'. + ;; Regexp matching a keyword in `c-defun-type-name-decl-kwds'. t (c-make-keywords-re t (c-lang-const c-defun-type-name-decl-kwds))) (c-lang-defvar c-defun-type-name-decl-key (c-lang-const c-defun-type-name-decl-key)) @@ -2620,7 +2620,7 @@ type." (c-lang-defconst c-equals-nontype-decl-key ;; An unadorned regular expression which matches any member of - ;; `c-equals-decl-kwds', or nil if such don't exist in the current language. + ;; `c-equals-nontype-decl-kwds', or nil if such don't exist in the current language. t (when (c-lang-const c-equals-nontype-decl-kwds) (c-make-keywords-re nil (c-lang-const c-equals-nontype-decl-kwds)))) (c-lang-defvar c-equals-nontype-decl-key @@ -4486,7 +4486,7 @@ accomplish that conveniently." (error (if current-var (message - "Eval error in the `c-lang-defvar' or `c-lang-setver' for `%s' (source eval): %S" + "Eval error in the `c-lang-defvar' or `c-lang-setvar' for `%s' (source eval): %S" current-var err) (signal (car err) (cdr err))))))) )) |