emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#7580: closed ([PATCH] cc-mode bitfield fontificati


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#7580: closed ([PATCH] cc-mode bitfield fontification bug)
Date: Mon, 03 Oct 2011 20:37:01 +0000

Your message dated Mon, 03 Oct 2011 16:35:10 -0400
with message-id <address@hidden>
and subject line Re: bug#7580: [PATCH] cc-mode bitfield fontification bug
has caused the debbugs.gnu.org bug report #7580,
regarding [PATCH] cc-mode bitfield fontification bug
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
7580: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7580
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] cc-mode bitfield fontification bug Date: Tue, 07 Dec 2010 04:34:54 -0800 User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.12) Gecko/20101027 Thunderbird/3.1.6
struct test
{
   /* Both should be fontified as bitfields; currently, only the former
is */
   int bf1:5;
   unsigned bf2:5;
};


@@ -5575,7 +5656,9 @@
                  ;; a valid label.  Otherwise the last one probably is the
                  ;; declared identifier and we should back up to the previous
                  ;; type, providing it isn't a cast.
-                 (if (eq (char-after) ?:)
+                 (if (and (eq (char-after) ?:)
+                           (not (and (eq backup-at-type 'prefix)
+                                     (eq at-type 'maybe))))
                      ;; If we've found a specifier keyword then it's a
                      ;; declaration regardless.
                      (throw 'at-decl-or-cast (eq at-decl-or-cast t))

Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message --- Subject: Re: bug#7580: [PATCH] cc-mode bitfield fontification bug Date: Mon, 03 Oct 2011 16:35:10 -0400 User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)
Version: 24.1

I see this in 23.3 but not in the current trunk, so it seems to have
been fixed.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]