From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: master f62a6acd00: Better handle drag-and-drop from one Emacs frame to another Date: Wed, 16 Mar 2022 14:48:38 +0200 Message-ID: <83zglqgj15.fsf@gnu.org> References: <164740523475.20801.13974648749407379114@vcs2.savannah.gnu.org> <20220316043355.64E63C051CB@vcs2.savannah.gnu.org> <87tubytadx.fsf@gnus.org> <835yoehywf.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="17661"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: larsi@gnus.org, luangruo@yahoo.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Mar 16 13:58:25 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nUTEN-0004O8-0O for ged-emacs-devel@m.gmane-mx.org; Wed, 16 Mar 2022 13:58:23 +0100 Original-Received: from localhost ([::1]:45180 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nUTEF-00062L-Nw for ged-emacs-devel@m.gmane-mx.org; Wed, 16 Mar 2022 08:58:21 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:60610) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nUT53-00036v-Oq for emacs-devel@gnu.org; Wed, 16 Mar 2022 08:48:49 -0400 Original-Received: from [2001:470:142:3::e] (port=59304 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nUT53-0005QG-DN; Wed, 16 Mar 2022 08:48:45 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=P/04dkQxIjVIeUYS0veMTPCKq0NItyVKUzuhQi97Jxs=; b=EPa7Fb3cFmmn lLiWojVlhUezWC1OLi5nRxRTHpntWnRVqRUXa6lgFnQCyFfukaK6ZztRl+WF59e0flLXaMGze3cvb jya615hCI/5w7ajooiURo1JYrGRAHtEs1sfOY292rQGt9JuLGTD/235/alHhQ6tnjs+uB4jafodVC qZW5ZcqBZNxFyxhaDrF+nLPYsVYywxiKSse2wUOypuPhWXT5yQvqLj/bi99WElgoilnEpqLtxtFGo 9fsR0+vxIKTw5+4/Q7X+js66P3JL5jlxd0saMuN3Gt4IQzhEO80SYfIO27bvUK42/nK0iT+KkIGSC K+UavwLIdOyz9psIXFTizw==; Original-Received: from [87.69.77.57] (port=1497 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nUT52-0001Dp-T9; Wed, 16 Mar 2022 08:48:45 -0400 In-Reply-To: <835yoehywf.fsf@gnu.org> (message from Eli Zaretskii on Wed, 16 Mar 2022 14:20:32 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:287221 Archived-At: > Date: Wed, 16 Mar 2022 14:20:32 +0200 > From: Eli Zaretskii > Cc: luangruo@yahoo.com, emacs-devel@gnu.org > > > From: Lars Ingebrigtsen > > Date: Wed, 16 Mar 2022 12:16:58 +0100 > > Cc: Po Lu > > > > One of these changes apparently leads to this warning: > > > > xterm.c: In function 'handle_one_xevent': > > xterm.c:959:29: warning: 'target_proto' may be used uninitialized in this function [-Wmaybe-uninitialized] > > 959 | msg.xclient.data.l[1] = (((unsigned int) min (X_DND_SUPPORTED_VERSION, > > xterm.c:11653:17: note: 'target_proto' was declared here > > 11653 | int target_proto; > > | ^~~~~~~~~~~~ > > > > On Debian/bookworm. > > Looks to me like a compiler bug, because AFAICT this variable _is_ > initialized before it is used. Ignore me, I was looking at a fixed source file.