summaryrefslogtreecommitdiff
path: root/lisp/progmodes/cc-langs.el
diff options
context:
space:
mode:
authorAlan Mackenzie <acm@muc.de>2020-01-26 13:01:58 +0000
committerAlan Mackenzie <acm@muc.de>2020-01-26 13:01:58 +0000
commitd7cd4ab7d948427104003f1d35cf52a4eac45d0a (patch)
tree044f69f4747aaf37d0715cd2b67e28b64968a8d1 /lisp/progmodes/cc-langs.el
parent1705e32ebc43addb3a1f0ca9e4e490484b7d1fcd (diff)
downloademacs-d7cd4ab7d948427104003f1d35cf52a4eac45d0a.tar.gz
Objective C Mode: Make c-forward-type work with "unsigned long", etc.
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.
Diffstat (limited to 'lisp/progmodes/cc-langs.el')
-rw-r--r--lisp/progmodes/cc-langs.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el
index b50e7e7f098..715af32d7ea 100644
--- a/lisp/progmodes/cc-langs.el
+++ b/lisp/progmodes/cc-langs.el
@@ -2055,11 +2055,10 @@ the appropriate place for that."
"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."