From xemacs-m  Fri Mar 21 08:49:24 1997
Received: from newman (root@newman.aventail.com [38.225.141.10])
	by xemacs.org (8.8.5/8.8.5) with SMTP id IAA02655
	for <xemacs-beta@xemacs.org>; Fri, 21 Mar 1997 08:49:23 -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 GAA06189; Fri, 21 Mar 1997 06:46:40 -0800
Date: Fri, 21 Mar 1997 06:46:40 -0800
Message-Id: <199703211446.GAA06189@newman>
From: "William M. Perry" <wmperry@aventail.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: Hrvoje Niksic <hniksic@srce.hr>
Cc: XEmacs Developers <xemacs-beta@xemacs.org>
Subject: Re: `M-x disassemble' not working?
In-Reply-To: <kighgi6rn6h.fsf@jagor.srce.hr>
References: <kighgi6rn6h.fsf@jagor.srce.hr>
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;

Hrvoje Niksic writes:
>I find this intolerable -- disassemble doesn't seem to work in XEmacs 20
>(compiled with MULE, but I don't think it matters, since the error is in
>char<->int troubles).  The trouble spot is using `int-to-string' on
>characters in `disassemble-1'.  Simply changing the three occurences of
>`int-to-string' to `char-to-string' doesn't help matters, as then you get
>things like `call ^A' instead of `call 1', etc.

  What about wrapping it in:

(int-to-string (char-int foo))

instead of just

(int-to-string foo)

-Bill P.

