From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jason Rumney Newsgroups: gmane.emacs.devel Subject: Re: Improving X selection? Date: Thu, 07 Feb 2008 17:13:57 +0000 Message-ID: <47AB3C55.4010701@gnu.org> References: <8e24944a0802011115h77423fd1p2eae15a1e46bca1a@mail.gmail.com> <8e24944a0802011617k66c49283id9478dc3d5168bdf@mail.gmail.com> <8e24944a0802030338i1ce3397yba581ffedbe2f118@mail.gmail.com> <47A5B737.8000804@swipnet.se> <8e24944a0802030512t77c4ca20s6d059df50295ebd2@mail.gmail.com> <8e24944a0802041302n45064c4fm2ac428ceda204254@mail.gmail.com> <47A80B57.3050402@swipnet.se> <8e24944a0802061957re4baf7cr9560fa3496be56b4@mail.gmail.com> <47AACA36.9060901@gnu.org> <8e24944a0802070832l71e8fb1el91527f0b72d06a28@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1202404479 475 80.91.229.12 (7 Feb 2008 17:14:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 7 Feb 2008 17:14:39 +0000 (UTC) Cc: "Horsley, Tom" , "Jan D." , rms@gnu.org, emacs-devel@gnu.org To: David De La Harpe Golden Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Feb 07 18:14:58 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 1JNAKi-0004Ee-LW for ged-emacs-devel@m.gmane.org; Thu, 07 Feb 2008 18:14:44 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JNAKF-0003q8-V6 for ged-emacs-devel@m.gmane.org; Thu, 07 Feb 2008 12:14:15 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JNAKB-0003p7-GK for emacs-devel@gnu.org; Thu, 07 Feb 2008 12:14:11 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JNAKA-0003mt-1x for emacs-devel@gnu.org; Thu, 07 Feb 2008 12:14:11 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JNAK9-0003mk-QJ for emacs-devel@gnu.org; Thu, 07 Feb 2008 12:14:09 -0500 Original-Received: from mk-outboundfilter-4.mail.uk.tiscali.com ([212.74.114.32]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JNAK5-0001Hk-CA; Thu, 07 Feb 2008 12:14:05 -0500 Original-X-Trace: 2537830/mk-outboundfilter-2.mail.uk.tiscali.com/F2S/$ACCEPTED/freedom2Surf-customers/83.67.23.108 X-SBRS: None X-RemoteIP: 83.67.23.108 X-IP-MAIL-FROM: jasonr@gnu.org X-IP-BHB: Once X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAHPKqkdTQxds/2dsb2JhbAAIrEg X-IP-Direction: OUT Original-Received: from i-83-67-23-108.freedom2surf.net (HELO [127.0.0.1]) ([83.67.23.108]) by smtp.f2s.tiscali.co.uk with ESMTP/TLS/DHE-RSA-AES256-SHA; 07 Feb 2008 17:14:04 +0000 User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) In-Reply-To: <8e24944a0802070832l71e8fb1el91527f0b72d06a28@mail.gmail.com> X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. 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:88437 Archived-At: David De La Harpe Golden wrote: > Just the fact that is was on my system > > On non-w32, e.g. add a to lisp/w32-vars.el : > (defcustom this-should-not-exist-on-non-w32 t > "test for w32 load issue" > :type 'boolean > :group 'killing) > , rebuild, then emacs -Q and M-x customize-group killing => > See attached screenshot, near bottom. > Something is messed up with cus-dep On my GNU/Linux build cus-load contains (put 'killing 'custom-loads '(w32-vars)) while on my Windows build, it contains (put 'killing 'custom-loads '(simple x-win)) Given that this variable is declared in w32-vars.el, term/x-win.el, term/mac-win.el and term/pc-win.el, I think there is a need for conditional custom-loads, or maybe we should just move that variable to a non platform-specific file.