diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-07-19 13:25:34 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-07-19 13:25:34 +0000 |
commit | 7e5d8879fc3ae84651710ba740191a78028d8ac1 (patch) | |
tree | 8b925ead661bf91178be8b4885f1b72365557fe5 /lisp | |
parent | 4125ceb0ce9f9ffc79ab69b8c106840d3dcd9f81 (diff) | |
download | emacs-7e5d8879fc3ae84651710ba740191a78028d8ac1.tar.gz |
(c++-keywords): Add Standard C++ operator names.
Diffstat (limited to 'lisp')
-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 |