From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/23364 Path: main.gmane.org!not-for-mail From: Fabrice POPINEAU Newsgroups: gmane.emacs.gnus.general Subject: Re: select articles by field Date: 16 Jun 1999 17:50:24 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035161110 1580 80.91.224.250 (21 Oct 2002 00:45:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:45:10 +0000 (UTC) Cc: ding@gnus.org 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 MAA26247 for ; Wed, 16 Jun 1999 12:06:02 -0400 (EDT) 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 LAB30795; Wed, 16 Jun 1999 11:04:17 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 16 Jun 1999 11:04:26 -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 LAA14502 for ; Wed, 16 Jun 1999 11:04:16 -0500 (CDT) Original-Received: from esemetz.ese-metz.fr (esemetz.ese-metz.fr [193.48.224.212]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id MAA26202 for ; Wed, 16 Jun 1999 12:03:18 -0400 (EDT) Original-Received: from NEVERYON.ese-metz.fr (neveryon.ese-metz.fr [193.48.224.220]) by esemetz.ese-metz.fr (8.9.1a/8.9.1) with SMTP id SAA07079; Wed, 16 Jun 1999 18:03:46 +0200 Original-To: Michael Klingbeil In-Reply-To: Michael Klingbeil's message of "16 Jun 1999 15:12:47 +0200" Original-Lines: 17 User-Agent: Gnus/5.070088 (Pterodactyl Gnus v0.88) XEmacs/21.2 (Sumida) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:23364 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:23364 The first problem being probably those lines in smiley.el : (defun smiley-buffer (&optional buffer st nd) (interactive) (when (featurep 'x) (save-excursion which should be : (defun smiley-buffer (&optional buffer st nd) (interactive) (when (featurep '(or x windows-nt)) (save-excursion -- Fabrice POPINEAU