This allows the correct fontification of and correct functioning of C-c C-z
(c-display-defun-name) in ns_get_pixel in Emacs's src/nsimage.m.
* lisp/progmodes/cc-langs.el (c-primitive-type-prefix-kwds): For objc, use the
same value as for c and c++ rather than the default nil.
"Keywords that might act as prefixes for primitive types. Assumed to
be a subset of `c-primitive-type-kwds'."
t nil
- (c c++) '("long" "short" "signed" "unsigned")
- idl '("long" "unsigned"
+ (c c++ objc) '("long" "short" "signed" "unsigned")
+ idl '("long" "unsigned"
;; In CORBA PSDL:
"strong"))
-
(c-lang-defconst c-typedef-kwds
"Prefix keyword(s) like \"typedef\" which make a type declaration out
of a variable declaration."