From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/26168 Path: main.gmane.org!not-for-mail From: Toby Speight Newsgroups: gmane.emacs.gnus.general Subject: Re: mailcap-viewer-lessp is just plain wrong Date: 04 Nov 1999 11:17:15 +0000 Organization: Citrix Systems (Cambridge) Sender: owner-ding@hpc.uh.edu Message-ID: References: <87aeoyvw1b.fsf@pazuzu.eudaemonia.org> <5bpuxtoqgm.fsf@giga.cs.rochester.edu> <871za9ov5p.fsf@pazuzu.eudaemonia.org> <5bbt9bfh7k.fsf@brain.cs.rochester.edu> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035163428 17988 80.91.224.250 (21 Oct 2002 01:23:48 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:23:48 +0000 (UTC) Return-Path: Original-Received: from lisa.math.uh.edu (lisa.math.uh.edu [129.7.128.49]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id GAA07269 for ; Thu, 4 Nov 1999 06:17:51 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by lisa.math.uh.edu (8.9.1/8.9.1) with ESMTP id FAB19789; Thu, 4 Nov 1999 05:17:47 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 04 Nov 1999 05:18:04 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id FAA01160 for ; Thu, 4 Nov 1999 05:17:51 -0600 (CST) Original-Received: from gatekeeper.ctxuk.citrix.com (root@gatekeeper.ctxuk.citrix.com [195.153.38.114]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id GAA07262 for ; Thu, 4 Nov 1999 06:17:19 -0500 (EST) Original-Received: from sh.ctxuk.citrix.com (sh.ctxuk.citrix.com [10.30.224.4]) by gatekeeper.ctxuk.citrix.com (8.8.7/BSCF-1.7) with ESMTP id LAA11496 for ; Thu, 4 Nov 1999 11:17:17 GMT Original-Received: from hwmail01.ctxuk.citrix.com (hwmail01.ctxuk.citrix.com [10.30.224.23]) by sh.ctxuk.citrix.com (8.8.7/BSCF-1.7) with ESMTP id LAA07090 for ; Thu, 4 Nov 1999 11:17:17 GMT Original-Received: from lanber.cam.citrix.com (LANBER [10.70.1.235]) by hwmail01.ctxuk.citrix.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2448.0) id 45YD1Y7J; Thu, 4 Nov 1999 11:17:16 -0000 Original-To: The Gnus Mailing List Original-Lines: 35 In-Reply-To: Shenghuo ZHU's message of "03 Nov 1999 15:33:35 -0500" X-Author-Info: Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:26168 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:26168 Mark> Mark Buda ZSH> Shenghuo ZHU 0> In article <871za9ov5p.fsf@pazuzu.eudaemonia.org>, Mark wrote: Mark> (cond Mark> ; if only one is wild, the other one is better Mark> ((and x-wild (not y-wild)) Mark> nil) Mark> ((and (not x-wild) y-wild) Mark> t) Mark> ; otherwise, if only one is lisp, it is better Mark> ((and x-lisp (not y-lisp)) Mark> t) Mark> Mark> ((and (not x-lisp) y-lisp) Mark> nil) 0> In article <5bbt9bfh7k.fsf@brain.cs.rochester.edu>, ZSH wrote: ZSH> This condition is not necessary. I think it is useful if we finish the final test (i.e. the "(blah blah blah)" below - perhaps using Q values, as in HTTP), because without it we can fall through and choose X instead of Y even if Y is lisp and X is external. Mark> ; otherwise, compare them some other arbitrary way Mark> (t Mark> (blah blah blah)))