From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/36800 Path: main.gmane.org!not-for-mail From: prj@po.cwru.edu (Paul Jarc) Newsgroups: gmane.emacs.gnus.general Subject: Re: weird error message about X-Face: Date: Thu, 05 Jul 2001 18:14:31 -0400 Message-ID: References: <8766d7oyac.church.of.emacs@cis.ohio-state.edu> <873d8bniej.church.of.emacs@cis.ohio-state.edu> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035172326 10524 80.91.224.250 (21 Oct 2002 03:52:06 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:52:06 +0000 (UTC) Return-Path: Return-Path: Original-Received: (qmail 14530 invoked from network); 5 Jul 2001 22:14:32 -0000 Original-Received: from multivac.student.cwru.edu (HELO multivac.cwru.edu) (261@129.22.96.25) by gnus.org with SMTP; 5 Jul 2001 22:14:32 -0000 Original-Received: (qmail 1331 invoked by uid 500); 5 Jul 2001 22:14:53 -0000 Mail-Followup-To: ding@gnus.org Original-To: ding@gnus.org In-Reply-To: <873d8bniej.church.of.emacs@cis.ohio-state.edu> (Colin Walters's message of "Thu, 05 Jul 2001 18:03:00 -0400") User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/20.7 Original-Lines: 17 Xref: main.gmane.org gmane.emacs.gnus.general:36800 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:36800 Colin Walters writes: >+ ;; Skip over the header. >+ (goto-char (point-min)) >+ (skip-chars-forward "^:") >+ (unless (eobp) >+ (forward-char)) >+ (unless (eobp) >+ (forward-char)) This skips over the header field name, the colon, and space, right? Technically, the space is part of the field's value, and it need not be present. So it's best to check for a space before skipping it. (I haven't been paying much attention to this thread, though, so maybe we know that it will always be present here?) paul