From xemacs-m  Sun Jul 27 23:45:34 1997
Received: from news.smart.net (jmiller@max1p91.smart.net [206.97.127.91])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id XAA07761
	for <xemacs-beta@xemacs.org>; Sun, 27 Jul 1997 23:45:32 -0500 (CDT)
Received: (from jmiller@localhost)
          by news.smart.net (8.8.4/8.8.4)
	  id AAA26388; Mon, 28 Jul 1997 00:47:48 -0400
Date: Mon, 28 Jul 1997 00:47:48 -0400
Message-Id: <199707280447.AAA26388@news.smart.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
From: Jeff Miller <jmiller@smart.net>
To: xemacs-beta@xemacs.org
Subject: Re: success - 20.3b15 - linux
In-Reply-To: <199707280313.XAA21914@news.smart.net>
References: <199707280313.XAA21914@news.smart.net>
X-Mailer: VM 6.33 under 20.3 "Berlin" XEmacs  Lucid (beta15)
Reply-to: jmiller@smart.net
X-Face: &vGrMZ?Q&W5~yiCR_#hat=$tgJrK`J=2$se?0Nu9I3G|I<2-\:82zx>kz=l8(yw)G1i&0"D
 <nv_e$^;,ftG6@Hn"did"G5i=X_-Z3Y

>>>>> "JM" == Jeff Miller <jmiller@smart.net> writes:

JM> mostly working.  There seems to be some type of problem with some of the
JM> w3/url stuff that vm calls.  One of my friends use microsoft outlook and
JM> is sending html'ized emails.  20.3-b14 can read the msg ok.  b15 gives me
JM> an error when it is decoding the html i think.

JM> Wrong type argument: number-char-or-marker-p, nil
JM> Loading url-file...done

i've been stepping through the debugger and it's happening in
w3-find-default-stylesheets, toward the end, in this loop

    (while possible
      (setq cur (car possible)
	    possible (cdr possible)
	    found (and cur (file-exists-p cur) (file-readable-p cur)
		       (not (file-directory-p cur)) cur))
      (if found
	  (setq total-found (1+ total-found)
		w3-loaded-stylesheets (cons cur w3-loaded-stylesheets)
		w3-user-stylesheet (css-parse (concat "file:" cur) nil
				     w3-user-stylesheet))))

the last couple msgs before it bombs, are

Wrong type argument: number-char-or-marker-p, nil
Result: nil
Result: "file:/usr/local/lib/xemacs-20.3-b15/etc/w3/stylesheet"
Result: "/usr/local/lib/xemacs-20.3-b15/etc/w3/stylesheet"
Result: ("/usr/local/lib/xemacs-20.3-b15/etc/w3/stylesheet")
Result: nil
Result: "/usr/local/lib/xemacs-20.3-b15/etc/w3/stylesheet"
Result: 1
Result: 0
Result: "/usr/local/lib/xemacs-20.3-b15/etc/w3/stylesheet"
Break

