From xemacs-m  Fri Feb 28 05:36:18 1997
Received: from piglet.splode.com (h-205-217-255-72.netscape.com [205.217.255.72])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id FAA01646
	for <xemacs-beta@xemacs.org>; Fri, 28 Feb 1997 05:36:13 -0600 (CST)
Received: (from friedman@localhost)
	by piglet.splode.com (8.8.5/8.8.5) id DAA28598;
	Fri, 28 Feb 1997 03:35:45 -0800
Message-Id: <199702281135.DAA28598@piglet.splode.com>
From: friedman@splode.com (Noah Friedman)
To: xemacs-beta@xemacs.org
Subject: xemacs 20 needs char-to-int
Reply-To: friedman@splode.com
Date: Fri, 28 Feb 97 03:35:44 PST

Now that ints and chars aren't the same type anymore, xemacs needs a way to
convert them.

You really want a more efficient way of doing it than consing a string,
which is what you have to do at the moment, as far as I can tell.

    (defun char-to-int (c)
      (string-to-int (char-to-string c)))

Yuck.

