# HG changeset patch # User Simon Marshall # Date 869830460 0 # Node ID ec31453a91967e13b8393b7868faf2ae8d2196e3 # Parent 0f01c27a9756133d9d80b01d336391e161b11d0a Add type specs "explicit" "mutable". diff -r 0f01c27a9756 -r ec31453a9196 lisp/font-lock.el --- a/lisp/font-lock.el Fri Jul 25 08:06:19 1997 +0000 +++ b/lisp/font-lock.el Fri Jul 25 11:34:20 1997 +0000 @@ -2202,11 +2202,11 @@ :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 @@ "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 says these are new. + "explicit" "mutable")))) c++-font-lock-extra-types) "\\|")) ;;