diff options
author | Alan Mackenzie <acm@muc.de> | 2007-08-25 16:54:09 +0000 |
---|---|---|
committer | Alan Mackenzie <acm@muc.de> | 2007-08-25 16:54:09 +0000 |
commit | c382ec4021151ec004b4612f2177e5d29e83b63c (patch) | |
tree | b8b8a6f3a35ddecf2728cae2209adef2e5e408eb /lisp | |
parent | a335046bf52834e718a2aebdd3b909a14ab1dc28 (diff) | |
download | emacs-c382ec4021151ec004b4612f2177e5d29e83b63c.tar.gz emacs-c382ec4021151ec004b4612f2177e5d29e83b63c.tar.bz2 emacs-c382ec4021151ec004b4612f2177e5d29e83b63c.zip |
(c-other-decl-block-key-in-symbols-alist): new language variable.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/cc-langs.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el index c5d9c162520..5f9dbad3be2 100644 --- a/lisp/progmodes/cc-langs.el +++ b/lisp/progmodes/cc-langs.el @@ -1601,6 +1601,17 @@ will be handled." t (c-make-keywords-re t (c-lang-const c-other-block-decl-kwds))) (c-lang-defvar c-other-decl-block-key (c-lang-const c-other-decl-block-key)) +(c-lang-defvar c-other-decl-block-key-in-symbols-alist + (mapcar + (lambda (elt) + (cons elt + (if (string= elt "extern") + 'inextern-lang + (intern (concat "in" elt))))) + (c-lang-const c-other-block-decl-kwds)) + "Alist associating keywords in c-other-decl-block-decl-kwds with +their matching \"in\" syntactic symbols.") + (c-lang-defconst c-typedef-decl-kwds "Keywords introducing declarations where the identifier(s) being declared are types. |