comparison lisp/progmodes/cc-langs.el @ 52607:28b12b0193f6

(c-type-list-kwds): If "operator" is followed by an identifier in C++ then it's a type.
author Martin Stjernholm <mast@lysator.liu.se>
date Wed, 24 Sep 2003 13:56:09 +0000
parents 695cf19ef79e
children b7446b6f097d
comparison
equal deleted inserted replaced
52606:e1373b8163ac 52607:28b12b0193f6
1360 too. 1360 too.
1361 1361
1362 Note: Use `c-typeless-decl-kwds' for keywords followed by a function 1362 Note: Use `c-typeless-decl-kwds' for keywords followed by a function
1363 or variable identifier (that's being defined)." 1363 or variable identifier (that's being defined)."
1364 t '("struct" "union" "enum") 1364 t '("struct" "union" "enum")
1365 (c c++ awk) nil 1365 (c awk) nil
1366 c++ '("operator")
1366 objc (append '("@class" "@interface" "@implementation" "@protocol") 1367 objc (append '("@class" "@interface" "@implementation" "@protocol")
1367 (c-lang-const c-type-list-kwds)) 1368 (c-lang-const c-type-list-kwds))
1368 java '("class" "import" "interface" "new" "extends" "implements" "throws") 1369 java '("class" "import" "interface" "new" "extends" "implements" "throws")
1369 idl (append '("component" "eventtype" "home" "interface" "manages" "native" 1370 idl (append '("component" "eventtype" "home" "interface" "manages" "native"
1370 "primarykey" "supports" "valuetype" 1371 "primarykey" "supports" "valuetype"