comparison lisp/font-lock.el @ 24976:1a1a57be6ae6

(c++-font-lock-extra-types): Add "type_info".
author Karl Heuer <kwzh@gnu.org>
date Tue, 20 Jul 1999 22:14:00 +0000
parents 44087df57d4f
children 5312a58f3397
comparison
equal deleted inserted replaced
24975:e939a57634ba 24976:1a1a57be6ae6
2177 "deque" "vector" "bit_vector" 2177 "deque" "vector" "bit_vector"
2178 "set" "multiset" 2178 "set" "multiset"
2179 "map" "multimap" 2179 "map" "multimap"
2180 "hash\\(_\\(m\\(ap\\|ulti\\(map\\|set\\)\\)\\|set\\)\\)?" 2180 "hash\\(_\\(m\\(ap\\|ulti\\(map\\|set\\)\\)\\|set\\)\\)?"
2181 "stack" "queue" "priority_queue" 2181 "stack" "queue" "priority_queue"
2182 "type_info"
2182 "iterator" "const_iterator" "reverse_iterator" "const_reverse_iterator" 2183 "iterator" "const_iterator" "reverse_iterator" "const_reverse_iterator"
2183 "reference" "const_reference") 2184 "reference" "const_reference")
2184 "*List of extra types to fontify in C++ mode. 2185 "*List of extra types to fontify in C++ mode.
2185 Each list item should be a regexp not containing word-delimiters. 2186 Each list item should be a regexp not containing word-delimiters.
2186 For example, a value of (\"string\") means the word string is treated as a type 2187 For example, a value of (\"string\") means the word string is treated as a type