From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/19235 Path: main.gmane.org!not-for-mail From: Didier Verna Newsgroups: gmane.emacs.gnus.general Subject: [PATCH] mode Ebola fixes Date: 26 Nov 1998 13:56:13 +0100 Organization: E.N.S.T. Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 X-Trace: main.gmane.org 1035157621 10575 80.91.224.250 (20 Oct 2002 23:47:01 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:47:01 +0000 (UTC) Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id HAA06404 for ; Thu, 26 Nov 1998 07:56:49 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.1/8.9.1) with ESMTP id GAB13806; Thu, 26 Nov 1998 06:56:38 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 26 Nov 1998 06:56:37 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id GAA18269 for ; Thu, 26 Nov 1998 06:56:27 -0600 (CST) Original-Received: from ulysse.enst.fr (hXozWcXe+xEde3uN9cja2ELVusx2MVQt@inf.enst.fr [137.194.2.81]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id HAA06397 for ; Thu, 26 Nov 1998 07:56:19 -0500 (EST) Original-Received: from metheny.enst.fr (metheny.enst.fr [137.194.204.4]) by ulysse.enst.fr (8.8.8/8.8.8) with ESMTP id NAA17976 for ; Thu, 26 Nov 1998 13:56:16 +0100 (MET) Original-Received: (from verna@localhost) by metheny.enst.fr (8.8.8/8.8.8) id NAA00999; Thu, 26 Nov 1998 13:56:13 +0100 (MET) Original-To: Gnus List X-Attribution: dv X-Url: http://www.infres.enst.fr/~verna/ X-Web: http://www.infres.enst.fr/~verna/ X-Home-Page: http://www.infres.enst.fr/~verna/ Mail-Copies-To: never X-Face: |j}\)O|k##MrRz#VK$Jy=0r=3Qc,,a/Tr6*JQbE73dy17]2YcmW$9Z&H21e}#~#pgc>dn(is5Bv1l!{1re+Q9suKIOUmOqZs2>QMxHlR;;}kaGYA@HR3D C6 X-Face: 6o|eiKqaHN.ANh8HXDzntcWUOCg\]RsOd.ctvm~*y}Y^R&*a+Co,\s#=HWsw3x$b_n2kJ#g (7u?J^@^xP)f,jUF|0Z'J:|G/bMA5O12*b,7`-Q`=pKsCRIpso07.Y>YB2H{7`?u&yh;C_ZtLHfj * mailcap.el (mailcap-parse-mailcap-extras): fixed more char-int comparisons --- mailcap.el.orig Thu Nov 26 13:44:55 1998 +++ mailcap.el Thu Nov 26 13:45:47 1998 @@ -412,7 +412,7 @@ (downcase-region name-pos (point)) (setq name (buffer-substring name-pos (point))) (skip-chars-forward " \t\n") - (if (not (eq (or (char-after (point)) 0) ?=)) ; There is no value + (if (not (eq (or (char-after (point)) ?0) ?=)) ; There is no value (setq value nil) (skip-chars-forward " \t\n=") (setq val-pos (point)) @@ -426,7 +426,7 @@ (error (goto-char (point-max))))) (while (not done) (skip-chars-forward "^;") - (if (eq (or (char-after (1- (point))) 0) ?\\ ) + (if (eq (or (char-after (1- (point))) ?0) ?\\ ) (progn (subst-char-in-region (1- (point)) (point) ?\\ ? ) (skip-chars-forward ";")) -- / / _ _ Didier Verna http://www.inf.enst.fr/~verna/ - / / - / / /_/ / E.N.S.T. INF C201.1 mailto:verna@inf.enst.fr /_/ / /_/ / /__ / 46 rue Barrault Tel. (33) 01 45 81 73 46 75634 Paris cedex 13 Fax. (33) 01 45 81 31 19