]> git.eshelyaron.com Git - emacs.git/commitdiff
Fontify "extern foo ();" correctly inside a function
authorAlan Mackenzie <acm@muc.de>
Wed, 3 May 2023 10:01:14 +0000 (10:01 +0000)
committerAlan Mackenzie <acm@muc.de>
Wed, 3 May 2023 10:01:14 +0000 (10:01 +0000)
This fixes bug#63224.

* lisp/progmodes/cc-engine.el (c-forward-type): Handle the "("
as a special case by trying to parse it with
c-forward-declarator and accepting it as a typeless function
when that fails.

lisp/progmodes/cc-engine.el

index f7320da5629654ca2afbdf8b3588efbc42391ab2..8b34daf03c2ef5d33d9876a2e127cac3b1bd8f3d 100644 (file)
@@ -9279,7 +9279,11 @@ multi-line strings (but not C++, for example)."
             (setq pos (point))
             (c-forward-syntactic-ws)
             (and (not (looking-at c-symbol-start))
-                 (not (looking-at c-type-decl-prefix-key)))))
+                 (or
+                  (not (looking-at c-type-decl-prefix-key))
+                  (and (eq (char-after) ?\()
+                       (not (save-excursion
+                              (c-forward-declarator))))))))
       ;; A C specifier followed by an implicit int, e.g.
       ;; "register count;"
       (goto-char prefix-end-pos)