From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: emacs-26 71a9151: * src/character.c (char_width): Support glyphs with faces. (Bug#32276) Date: Sun, 29 Jul 2018 17:46:14 +0300 Message-ID: <8336w2t809.fsf@gnu.org> References: <20180727093403.18242.35476@vcs0.savannah.gnu.org> <20180727093405.6D4D521616@vcs0.savannah.gnu.org> <8736w29wjt.fsf@gmail.com> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: blaine.gmane.org 1532875460 20305 195.159.176.226 (29 Jul 2018 14:44:20 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 29 Jul 2018 14:44:20 +0000 (UTC) Cc: emacs-devel@gnu.org To: Robert Pluim Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jul 29 16:44:16 2018 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 1fjmvd-00058u-V5 for ged-emacs-devel@m.gmane.org; Sun, 29 Jul 2018 16:44:14 +0200 Original-Received: from localhost ([::1]:48670 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fjmxk-00028s-K2 for ged-emacs-devel@m.gmane.org; Sun, 29 Jul 2018 10:46:24 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40632) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fjmxV-00026M-Tt for emacs-devel@gnu.org; Sun, 29 Jul 2018 10:46:11 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fjmxV-0001HG-A1 for emacs-devel@gnu.org; Sun, 29 Jul 2018 10:46:09 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:40725) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fjmxV-0001H7-6O; Sun, 29 Jul 2018 10:46:09 -0400 Original-Received: from [176.228.60.248] (port=1895 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fjmxU-0003zb-OD; Sun, 29 Jul 2018 10:46:09 -0400 In-reply-to: <8736w29wjt.fsf@gmail.com> (message from Robert Pluim on Sun, 29 Jul 2018 12:16:22 +0200) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e 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:227947 Archived-At: > From: Robert Pluim > Cc: Eli Zaretskii > Date: Sun, 29 Jul 2018 12:16:22 +0200 > > With gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10) > this gives me the following warning: > > In file included from character.c:34:0: > character.c: In function ‘char_width’: > lisp.h:1772:11: warning: ‘c’ may be used uninitialized in this function [-Wmaybe-uninitialized] > ? ((a) + (unsigned) 0) op ((b) + (unsigned) 0) \ > ^ > character.c:292:10: note: ‘c’ was declared here > int c; > ^ Yes, sorry about my omission. Should be fixed now.