From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/19237 Path: main.gmane.org!not-for-mail From: Jan Vroonhof Newsgroups: gmane.emacs.gnus.general Subject: Re: [PATCH] mode Ebola fixes Date: 26 Nov 1998 15:30:59 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 X-Trace: main.gmane.org 1035157623 10588 80.91.224.250 (20 Oct 2002 23:47:03 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:47:03 +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 JAA07693 for ; Thu, 26 Nov 1998 09:31:44 -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 IAB14858; Thu, 26 Nov 1998 08:31:33 -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 08:31:26 -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 IAA18934 for ; Thu, 26 Nov 1998 08:31:17 -0600 (CST) Original-Received: from frege.math.ethz.ch (root@frege-d-math-north-g-west.math.ethz.ch [129.132.145.3]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id JAA07677 for ; Thu, 26 Nov 1998 09:31:09 -0500 (EST) Original-Received: from bolzano (vroonhof@bolzano [129.132.146.140]) by frege.math.ethz.ch (8.8.8/Main-STAT-mailer) with ESMTP id PAA25740 for ; Thu, 26 Nov 1998 15:30:48 +0100 (MET) Original-Received: (vroonhof@localhost) by bolzano (SMI-8.6/D-MATH-client) id PAA03107; Thu, 26 Nov 1998 15:30:59 +0100 Original-To: ding@gnus.org In-Reply-To: Didier Verna's message of "Thu, 26 Nov 1998 12:57:38 GMT" Original-Lines: 11 User-Agent: Gnus/5.070054 (Pterodactyl Gnus v0.54) XEmacs/21.0 (Pyrenean-pre6) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:19237 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:19237 Didier Verna writes: > (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 Isn't it much simpler to just write (eq (char-after (point)) ?=) ? The above code seems to come from some overzealous attempt to emulator following-char behaviour (thus reintroding ebola). Jan