From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: window-system-version on Windows Date: Thu, 4 Dec 2008 12:21:41 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1228389720 11010 80.91.229.12 (4 Dec 2008 11:22:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 4 Dec 2008 11:22:00 +0000 (UTC) To: "Emacs Devel" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Dec 04 12:23:05 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1L8CIP-0003zd-TS for ged-emacs-devel@m.gmane.org; Thu, 04 Dec 2008 12:23:02 +0100 Original-Received: from localhost ([127.0.0.1]:39724 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L8CHF-00041T-5a for ged-emacs-devel@m.gmane.org; Thu, 04 Dec 2008 06:21:49 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L8CHA-00041O-Hv for emacs-devel@gnu.org; Thu, 04 Dec 2008 06:21:44 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L8CH8-00041C-7S for emacs-devel@gnu.org; Thu, 04 Dec 2008 06:21:43 -0500 Original-Received: from [199.232.76.173] (port=58304 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L8CH8-000419-2h for emacs-devel@gnu.org; Thu, 04 Dec 2008 06:21:42 -0500 Original-Received: from yx-out-1718.google.com ([74.125.44.152]:15313) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L8CH7-00051h-Lp for emacs-devel@gnu.org; Thu, 04 Dec 2008 06:21:41 -0500 Original-Received: by yx-out-1718.google.com with SMTP id 34so3528895yxf.66 for ; Thu, 04 Dec 2008 03:21:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=Ex1L6JwsnxBjwu6c84Cf/1avJoNBb4xPgqnTIMuCUyg=; b=eXfhSkpVtF/w31tGDa2TNJ6PGu9h0EAzY6J5KZ70OCdKleYUBVuZipRCSX79xa1gWJ VtKRpiBZWrrmVs5AnKCjgG7izkDytoOdxZmE5z8QkxvX4EKbpW1BOFMO1vO8fybGZD7Y pC/ID2pQOtqYhaMK4vYeITe0i7CTwvRMpNbj8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=sWvZm/7OCVySnIUuoE2CH/0IWQBnFLZe2tAYYtXyP9xkuMPJTMdW+KTIhQM+3dnWUO Ws0dEybG/AqbGBVZrJDKzOOL2ibqomHaFQdRib4FJTo8RHUzovwnQOePGpVnWUSl/xGA i1f0Cja2moMG2M7EtszynXXPM5rLhT24/JO5U= Original-Received: by 10.101.68.19 with SMTP id v19mr8367138ank.62.1228389701158; Thu, 04 Dec 2008 03:21:41 -0800 (PST) Original-Received: by 10.100.13.13 with HTTP; Thu, 4 Dec 2008 03:21:41 -0800 (PST) Content-Disposition: inline X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:106555 Archived-At: Why is Fwindow_system_version initialized to 1 on dispnew.c #ifdef HAVE_NTGUI if (!inhibit_window_system) { Vinitial_window_system = intern ("w32"); Vwindow_system_version = make_number (1); adjust_frame_glyphs_initially (); return; } #endif /* HAVE_NTGUI */ and then unconditionally set to 3 XSETFASTINT (Vwindow_system_version, 3); at two places of w32fns.c (x_display_info_for_name and Fx_open_connection)? Also, what is its meaning on Windows? What does the 3 stands for? Juanma