From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Oleh Krehel Newsgroups: gmane.emacs.devel Subject: CC-mode highlight change between 24.5 and 25 Date: Fri, 02 Sep 2016 13:58:15 +0200 Message-ID: <878tvaeco8.fsf@oremacs.com> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1472817586 23280 195.159.176.226 (2 Sep 2016 11:59:46 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Fri, 2 Sep 2016 11:59:46 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Sep 02 13:59:42 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bfn8G-0005Tk-Ql for ged-emacs-devel@m.gmane.org; Fri, 02 Sep 2016 13:59:40 +0200 Original-Received: from localhost ([::1]:41628 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bfn8E-0003du-Iy for ged-emacs-devel@m.gmane.org; Fri, 02 Sep 2016 07:59:38 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40400) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bfn7P-0003Z2-9o for emacs-devel@gnu.org; Fri, 02 Sep 2016 07:58:48 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bfn7L-0004jH-7I for emacs-devel@gnu.org; Fri, 02 Sep 2016 07:58:46 -0400 Original-Received: from mail-wm0-f45.google.com ([74.125.82.45]:37245) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bfn7L-0004Yi-0w for emacs-devel@gnu.org; Fri, 02 Sep 2016 07:58:43 -0400 Original-Received: by mail-wm0-f45.google.com with SMTP id v143so27452398wmv.0 for ; Fri, 02 Sep 2016 04:58:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:mime-version; bh=jVhB6GBrTkMLT+GIbnHXP7xnSkoHOFl0DTSqrY7NXq8=; b=TQKD4oZ9ceI+BJc592JwmNVNqL3pfXwG0eTiGHcr5phSKlN8X+UzmJ7BfiE/0odJxl gBVrfARQJBDlBC1/5ZbzDIYgqsLZOA8Ba6O/r7EzENF0Z+qxruCQ3LiPVF+/jqUyv5Gr 538Js3lRY5M8qBSdfXE9SeH/PDlaGXgJwbKIdaPMPCUgM1UaGfLA9KyD7YaRjR/gByCN mdy9cEKFPsFdCoQCi6qZYwO61TpPf+EkJDO18dkAl1yf81wLlqolaCLNjJO5VCEiAJFz GcIgJfPEyLYcB9jP9cNGOAR1AUa4XjgpuLZ1Cy29YgT9BA6wajMV4mqjRqiVwKvQoSVq v5qw== X-Gm-Message-State: AE9vXwOogd7Di7MkDb45zbkVaqX/Obl4tFIVWu22TJ9fUQv2H8UXXmOyJAyrHdPk7ibpOg== X-Received: by 10.28.157.80 with SMTP id g77mr1864740wme.34.1472817500844; Fri, 02 Sep 2016 04:58:20 -0700 (PDT) Original-Received: from localhost (mail2.sioux.nl. [213.126.128.209]) by smtp.gmail.com with ESMTPSA id id1sm10108671wjb.21.2016.09.02.04.58.20 for (version=TLS1_2 cipher=AES128-SHA bits=128/128); Fri, 02 Sep 2016 04:58:20 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 74.125.82.45 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:207120 Archived-At: Hi all, I just noticed a difference in the highlight of this minimal file: #include int test (const char *file_name) { std::ofstream fout (file_name); } In version 24.5 the variable `fout' is properly highlighted with `font-lock-variable-name-face'. But in 25 it's highlighted with `font-lock-function-name-face'. Sorry if this was reported before. I just hope it can be fixed. regards, Oleh