From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/23764 Path: main.gmane.org!not-for-mail From: Per Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: GNUS/Decoding & be-dangerous problem! Date: 04 Jul 1999 13:14:59 +0200 Organization: The Church of Emacs Sender: owner-ding@hpc.uh.edu Message-ID: References: <14191.11006.890236.809580@localhost> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035161439 3799 80.91.224.250 (21 Oct 2002 00:50:39 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:50:39 +0000 (UTC) Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id HAA20481 for ; Sun, 4 Jul 1999 07:21:25 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.1/8.9.1) with ESMTP id GAB24593; Sun, 4 Jul 1999 06:17:41 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 04 Jul 1999 06:16:27 -0500 (CDT) 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 GAA18479 for ; Sun, 4 Jul 1999 06:16:11 -0500 (CDT) Original-Received: from sheridan.dina.kvl.dk (sheridan.dina.kvl.dk [130.225.40.227]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id HAA20459 for ; Sun, 4 Jul 1999 07:15:07 -0400 (EDT) Original-Received: from feller.dina.kvl.dk (feller.dina.kvl.dk [130.225.40.147]) by sheridan.dina.kvl.dk (8.9.0.Beta5/8.9.0.Beta5) with SMTP id NAA25405; Sun, 4 Jul 1999 13:15:19 +0200 Original-Received: by feller.dina.kvl.dk (SMI-8.6/SMI-SVR4) id NAA06804; Sun, 4 Jul 1999 13:15:00 +0200 Original-To: ding@gnus.org X-Face: +kRV2]2q}lixHkE{U)mY#+6]{AH=yN~S9@IFiOa@X6?GM|8MBp/ In-Reply-To: Lars Magne Ingebrigtsen's message of "04 Jul 1999 13:14:30 +0200" Original-Lines: 24 User-Agent: Gnus/5.070084 (Pterodactyl Gnus v0.84) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:23764 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:23764 Lars Magne Ingebrigtsen writes: > Per Abrahamsen writes: > > > > Gerald writes: > > > > > > > (setq gnus-uu-be-dangerous 't) > > > > > > (setq gnus-uu-be-dangerous t) > > > > Uh, aren't those semantically identical? > > Not in this case. :-) The code checks whether the variable is `t'. Yes, but quoting a self-quoting symbol like t, nil, or :keyword is supposed to be a no-op. Unless the code in question bypasses the Lisp reader. (eq t 't) ==> t (eq nil 'nil) ==> t