1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

(c-type-list-kwds): If "operator" is followed by an identifier in C++

then it's a type.
This commit is contained in:
Martin Stjernholm 2003-09-24 13:56:09 +00:00
parent a6782a6efd
commit fa14078b4f

View File

@ -1362,7 +1362,8 @@ too.
Note: Use `c-typeless-decl-kwds' for keywords followed by a function
or variable identifier (that's being defined)."
t '("struct" "union" "enum")
(c c++ awk) nil
(c awk) nil
c++ '("operator")
objc (append '("@class" "@interface" "@implementation" "@protocol")
(c-lang-const c-type-list-kwds))
java '("class" "import" "interface" "new" "extends" "implements" "throws")