From xemacs-m  Tue Mar 11 13:33:32 1997
Received: from newman (root@newman.aventail.com [38.225.141.10])
	by xemacs.org (8.8.5/8.8.5) with SMTP id NAA15700
	for <xemacs-beta@xemacs.org>; Tue, 11 Mar 1997 13:33:27 -0600 (CST)
Received: from kramer.in.aventail.com.aventail.com (wmperry@kramer [192.168.1.12]) by newman (8.6.12/8.6.9) with SMTP id LAA02914; Tue, 11 Mar 1997 11:31:31 -0800
Date: Tue, 11 Mar 1997 11:31:31 -0800
Message-Id: <199703111931.LAA02914@newman>
From: "William M. Perry" <wmperry@aventail.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: Jan Vroonhof <vroonhof@math.ethz.ch>
Cc: xemacs-beta@xemacs.org, "William M. Perry"  <wmperry@aventail.com>
Subject: Re: 19.15-b98 lisp/w3/image.el uses mule function
In-Reply-To: <byvi6yxmau.fsf@math.ethz.ch>
References: <byvi6yxmau.fsf@math.ethz.ch>
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;

Jan Vroonhof writes:
>
>I have xemacs 19.15-b98 compiled with minimal image support (xpm
>only). Therefore tm tries to use image-normalize:
>This gives an errror while image-normalize uses the variable
>"mule-no-coding-system" which doens't exist on 19.15
>  
>The relevant part of image.el is
>
>                 ((stringp (car chain))
>                  (let ((file-coding-system mule-no-coding-system))
>                    (call-process-region

  Try this patch.

-Bill P.

*** images.el	1997/02/26 16:21:01	1.9
--- images.el	1997/03/11 19:41:02
***************
*** 29,34 ****
--- 29,36 ----
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;;; The emacsen compatibility package - load it up before anything else
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+ (require 'mule-sysdp)
+ 
  (eval-and-compile
    (if (not (and (string-match "XEmacs" emacs-version)
  		(or (> emacs-major-version 19)

