]> git.eshelyaron.com Git - emacs.git/commitdiff
C++ Mode - Fontify "class Foo {\n ~Foo() noexcept;" correctly
authorAlan Mackenzie <acm@muc.de>
Wed, 24 Aug 2022 19:27:32 +0000 (19:27 +0000)
committerAlan Mackenzie <acm@muc.de>
Wed, 24 Aug 2022 19:27:32 +0000 (19:27 +0000)
This fixes bug #49787.

* lisp/progmodes/cc-engine.el (c-forward-decl-or-cast-1): (In `if' form just
before CASE 8) Remove the (not ...) around the (looking-at
c-after-suffixed-type-maybe-decl-key).

* lisp/progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare): Add
`c-not-decl' to the values of c-type which are erased at the start of a
fontification.

lisp/progmodes/cc-engine.el
lisp/progmodes/cc-fonts.el

index f46c909fea5ebb3a1694c73e78e8d5f09de9ebb3..1139423a45512ba1836d86d5ba4573af5ffec9ae 100644 (file)
@@ -10571,8 +10571,8 @@ This function might do hidden buffer changes."
                        backup-maybe-typeless
                        (when c-recognize-typeless-decls
                          (or (not got-suffix)
-                             (not (looking-at
-                                   c-after-suffixed-type-maybe-decl-key))))))
+                             (looking-at
+                              c-after-suffixed-type-maybe-decl-key)))))
               ;; Got an empty paren pair and a preceding type that probably
               ;; really is the identifier.  Shift the type backwards to make
               ;; the last one the identifier.  This is analogous to the
index 2495d21a10fd93883629b14b227662d6e0bffe84..12bb3d375132c64b8415ac75c0073b99e023576d 100644 (file)
@@ -940,7 +940,8 @@ casts and declarations are fontified.  Used on level 2 and higher."
                        '(c-decl-arg-start
                          c-decl-end
                          c-decl-id-start
-                         c-decl-type-start)))
+                         c-decl-type-start
+                         c-not-decl)))
             (1- (point))
           pos)
         limit 'c-type)))