diff options
| author | Simon Marshall <simon@gnu.org> | 1997-07-25 11:34:20 +0000 |
|---|---|---|
| committer | Simon Marshall <simon@gnu.org> | 1997-07-25 11:34:20 +0000 |
| commit | d77c8526beea2148c4cd0ad716d4a78080192ad7 (patch) | |
| tree | 34eb8feaa5faa7bb47398ed3d410d7ed2214f434 /lisp | |
| parent | 43807b770363bb9d449bdb4b17bd030cbda8163c (diff) | |
| download | emacs-d77c8526beea2148c4cd0ad716d4a78080192ad7.tar.gz | |
Add type specs "explicit" "mutable".
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/font-lock.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 6007c1869c1..8533359d805 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -2202,11 +2202,11 @@ The value of this variable is used when Font Lock mode is turned on." :type 'font-lock-extra-types-widget :group 'font-lock-extra-types) -(defcustom c++-font-lock-extra-types '("string") +(defcustom c++-font-lock-extra-types '("string" "wchar_t") "*List of extra types to fontify in C++ mode. Each list item should be a regexp not containing word-delimiters. -For example, a value of (\"string\") means the word string is treated as a type -name. +For example, a value of (\"string\" \"wchar_t\") means the words string and +wchar_t are treated as type names. The value of this variable is used when Font Lock mode is turned on." :type 'font-lock-extra-types-widget @@ -2442,7 +2442,9 @@ See also `c++-font-lock-extra-types'.") "union" "enum" "signed" "unsigned" "short" "long" "int" "char" "float" "double" "void" "volatile" "const" "inline" "friend" "bool" "virtual" "complex" "template" - "namespace" "using")))) + "namespace" "using" + ;; Mark Mitchell <mmitchell@usa.net> says these are new. + "explicit" "mutable")))) c++-font-lock-extra-types) "\\|")) ;; |
