From xemacs-m  Tue Jul  1 10:55:20 1997
Received: from newman.aventail.com (root@newman.aventail.com [199.238.236.1])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id KAA07745
	for <xemacs-beta@xemacs.org>; Tue, 1 Jul 1997 10:55:19 -0500 (CDT)
Received: from kramer.in.aventail.com (wmperry@kramer.in.aventail.com [192.168.1.12])
	by newman.aventail.com (8.8.5/8.8.5) with ESMTP id IAA22415;
	Tue, 1 Jul 1997 08:55:14 -0700 (PDT)
Received: (from wmperry@localhost) by kramer.in.aventail.com (8.7.6/8.7.3) id IAA25653; Tue, 1 Jul 1997 08:55:13 -0700
To: jmiller@smart.net
Cc: xemacs-beta@xemacs.org
Subject: Re: ebola  warnings & w3
References: <199707010516.BAA25452@news.smart.net>
Errors-to: wmperry@aventail.com
Reply-to: wmperry@aventail.com
X-Face: O~Rn;(l][/-o1sALg4A@xpE:9-"'IR[%;,,!m7</SYF`{vYQ(&RI1&EiH[FvT;J}@f!4kfz
 x_!Y#=y{Uuj9GvUi=cPuajQ(Z42R[wE@{G,sn$qGr5g/wnb*"*ktI+,CD}1Z'wxrM2ag-r0p5I6\nA
 [WJopW_J.WY;
From: wmperry@aventail.com (William M. Perry)
Date: 01 Jul 1997 08:55:13 -0700
In-Reply-To: Jeff Miller's message of "Tue, 1 Jul 1997 01:16:16 -0400"
Message-ID: <86wwnabwda.fsf@kramer.in.aventail.com>
Lines: 35
X-Mailer: Gnus v5.4.59/Emacs 19.34

Jeff Miller <jmiller@smart.net> writes:

> fired up w3 and got this in case anyone (bill?) cares......
> 
> I had just compiled a no-frills version 
> (no gif/jpeg/xpm/menubars/scrollbars/etc, pretty much just X) and just
> tried testing with w3 (it worked, btw)
> 
> Comparison between integer and character is constant nil (0 and ?\ )
>    [w3-display-node, w3-size-of-tree, <compiled-function from "w3-display.elc">, mapcar, w3-display-table-dimensions, w3-display-table, w3-display-node, w3-draw-tree, w3-prepare-buffer, w3-pass-to-viewer, w3-sentinel, w3-fetch, <compiled-function from "w3.elc">, call-interactively, command-execute, execute-extended-command, call-interactively]

  Not sure whether this is one to really worry about or not, but here's a
fix anyway.

-Bill P.

*** w3-display.el	1997/06/27 15:48:02	1.191
--- w3-display.el	1997/07/01 15:54:20
***************
*** 383,389 ****
  	    nil 'move)
        (replace-match " "))
      (goto-char w3-scratch-start-point)
!     (if (and (memq (preceding-char) '(?  ?\t ?\r ?\n))
  	     (looking-at "[ \t\r\n]"))
  	(delete-region (point)
  		       (progn
--- 383,389 ----
  	    nil 'move)
        (replace-match " "))
      (goto-char w3-scratch-start-point)
!     (if (and (memq (char-before) '(?  ?\t ?\r ?\n))
  	     (looking-at "[ \t\r\n]"))
  	(delete-region (point)
  		       (progn

