diff options
Diffstat (limited to 'lisp/font-lock.el')
-rw-r--r-- | lisp/font-lock.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 424db62a064..ba59b9568ea 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -2479,7 +2479,10 @@ See also `c++-font-lock-extra-types'.") ;; as keywords not types. "typedef" "template" "extern" "auto" "register" "const" "volatile" "static" - "inline" "friend" "virtual")))) + "inline" "friend" "virtual" + ;; Standard C++ operator names. + "and" "and_eq" "bitand" "bitor" "compl" "not" "not_eq" + "or" "or_eq" "xor" "xor_eq")))) (c++-operators (eval-when-compile (regexp-opt |