Parse C++ inher-intro when there's a template split over 2 lines.
* progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more rigorously the search for "class" etc. followed by ":". * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for random languages a regexp which never matches rather than nil.
This commit is contained in:
parent
b5eb903526
commit
869455d432
3 changed files with 15 additions and 8 deletions
|
@ -1,5 +1,13 @@
|
|||
2013-08-25 Alan Mackenzie <acm@muc.de>
|
||||
|
||||
Parse C++ inher-intro when there's a template split over 2 lines.
|
||||
|
||||
* progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
|
||||
rigorously the search for "class" etc. followed by ":".
|
||||
|
||||
* progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
|
||||
random languages a regexp which never matches rather than nil.
|
||||
|
||||
Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
|
||||
|
||||
* progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
|
||||
|
|
|
@ -9799,12 +9799,12 @@ comment at the start of cc-engine.el for more info."
|
|||
(not (eq (char-after) ?:))
|
||||
)))
|
||||
(save-excursion
|
||||
(c-backward-syntactic-ws lim)
|
||||
(if (eq char-before-ip ?:)
|
||||
(progn
|
||||
(forward-char -1)
|
||||
(c-backward-syntactic-ws lim)))
|
||||
(back-to-indentation)
|
||||
(c-beginning-of-statement-1 lim)
|
||||
(when (looking-at c-opt-<>-sexp-key)
|
||||
(goto-char (match-end 1))
|
||||
(c-forward-syntactic-ws)
|
||||
(c-forward-<>-arglist nil)
|
||||
(c-forward-syntactic-ws))
|
||||
(looking-at c-class-key)))
|
||||
;; for Java
|
||||
(and (c-major-mode-is 'java-mode)
|
||||
|
|
|
@ -2163,8 +2163,7 @@ assumed to be set if this isn't nil."
|
|||
(c-lang-defconst c-opt-<>-sexp-key
|
||||
;; Adorned regexp matching keywords that can be followed by an angle
|
||||
;; bracket sexp. Always set when `c-recognize-<>-arglists' is.
|
||||
t (if (c-lang-const c-recognize-<>-arglists)
|
||||
(c-make-keywords-re t (c-lang-const c-<>-sexp-kwds))))
|
||||
t (c-make-keywords-re t (c-lang-const c-<>-sexp-kwds)))
|
||||
(c-lang-defvar c-opt-<>-sexp-key (c-lang-const c-opt-<>-sexp-key))
|
||||
|
||||
(c-lang-defconst c-brace-id-list-kwds
|
||||
|
|
Loading…
Add table
Reference in a new issue