From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?iso-8859-1?Q?Jan_Dj=E4rv?= Newsgroups: gmane.emacs.devel Subject: Re: x-display-pixel-width/height inconsistency Date: Fri, 10 May 2013 09:44:04 +0200 Message-ID: <6FE726F0-7ACA-48A5-8F8C-28DF105F6877@swipnet.se> References: <514A5DE1.10009@gmx.de> <831ub767wf.fsf@gnu.org> <83mwtu4p7c.fsf@gnu.org> <83vc8h313t.fsf@gnu.org> <5073D6B8-95E4-4012-AA74-106F428379DC@swipnet.se> <8BD4B041-5A3F-4D7C-AFD3-E997E194AA9D@swipnet.se> <02B98FCD-71DB-47EC-B58B-41A2539FF61A@swipnet.se> <83vc6tcqss.fsf@gnu.org> <83haibdipo.fsf@gnu. org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (Mac OS X Mail 6.3 \(1503\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1368171856 27089 80.91.229.3 (10 May 2013 07:44:16 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 10 May 2013 07:44:16 +0000 (UTC) Cc: Eli Zaretskii , emacs-devel@gnu.org To: YAMAMOTO Mitsuharu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri May 10 09:44:12 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Uahzw-0005ud-Da for ged-emacs-devel@m.gmane.org; Fri, 10 May 2013 09:44:12 +0200 Original-Received: from localhost ([::1]:34758 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uahzv-000098-QS for ged-emacs-devel@m.gmane.org; Fri, 10 May 2013 03:44:11 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:50344) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uahzs-00006Q-3C for emacs-devel@gnu.org; Fri, 10 May 2013 03:44:09 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uahzq-0006i3-Il for emacs-devel@gnu.org; Fri, 10 May 2013 03:44:08 -0400 Original-Received: from mailout.melmac.se ([62.20.26.67]:46979) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uahzq-0006hf-C2 for emacs-devel@gnu.org; Fri, 10 May 2013 03:44:06 -0400 Original-Received: from mail01.melmac.se (mail01.melmac.se [62.20.26.80]) by mailout.melmac.se (Postfix) with ESMTP id 3CC0FCD52 for ; Fri, 10 May 2013 09:44:04 +0200 (CEST) Original-Received: (qmail 29424 invoked by uid 89); 10 May 2013 07:43:54 -0000 Original-Received: from unknown (HELO coolsville.localdomain) (boel.djarv@bdtv.se@176.10.223.235) by mail01.melmac.se with ESMTPA; 10 May 2013 07:43:54 -0000 Original-Received: from [172.20.199.13] (unknown [172.20.199.13]) by coolsville.localdomain (Postfix) with ESMTPSA id 0860B1A1B72; Fri, 10 May 2013 07:44:38 +0000 (UTC) In-Reply-To: X-Mailer: Apple Mail (2.1503) X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 62.20.26.67 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:159468 Archived-At: 10 maj 2013 kl. 08:00 skrev YAMAMOTO Mitsuharu = : >=20 >>> + if (FRAME_W32_P (f) && FRAME_W32_DISPLAY_INFO (f) =3D=3D = dpyinfo >>> + && !EQ (frame, tip_frame)) >=20 >> The test against dpyinfo is redundant, it will always be true: = there's >> only one dpyinfo on Windows. I would like to remove it, because it's >> confusing. (There's one more such test in another place in the >> patch.) >=20 > I'm aware of that. It's just for resemblance to X11 code. I'd rather > leave it to make it easier to compare with the code for X11 if it were > for the Mac port, but I don't have a strong opinion for W32. FWIW, I removed the dpyinfo test in the NS-code. Jan D.