From xemacs-m  Fri May  2 08:15:50 1997
Received: from portofix.ida.liu.se (portofix.ida.liu.se [130.236.177.25])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id IAA19140
	for <xemacs-beta@xemacs.org>; Fri, 2 May 1997 08:15:49 -0500 (CDT)
Received: from sen2.ida.liu.se (sen2.ida.liu.se [130.236.176.112])
	by portofix.ida.liu.se (8.8.5/8.8.5) with SMTP id PAA27722
	for <xemacs-beta@xemacs.org>; Fri, 2 May 1997 15:15:49 +0200 (MET DST)
Received: by sen2.ida.liu.se (SMI-8.6/ida.slave-V1.0b6d6S2)
	id PAA01580; Fri, 2 May 1997 15:15:49 +0200
Date: Fri, 2 May 1997 15:15:49 +0200
Message-Id: <199705021315.PAA01580@sen2.ida.liu.se>
From: David Byers <davby@ida.liu.se>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: xemacs-beta@xemacs.org
Subject: Small patch to isearch-mode.el
X-Mailer: VM 6.29 under 20.1 XEmacs Lucid (beta15)
X-Face: (@~#v$c[GP"T}a;|MU<%Dpm5*6yv"NR|7k;uk8MAISFxdZ(Og$C{u(j"9X7v$qonp}SKfhT
 g|5[Pu~/3F7XQEk70gK'4z%1R%%gg7]}=>/jD`qcBeHDgo&HS,^S!&.zoTSxh<>-O6EB?SSy96&m37

I'm a bit behind on my reading; I apologize if this has already been fixed.

In XEmacs 20.2b3/MULE, isearch-mode.el has a small bug, now that
characters are no longer integers. Typing M-SPC while doing
isearch-forward doesn't work; it should.

The following seems to do the trick.

--
David Byers.


--- isearch-mode.el.old Thu Apr 10 07:55:45 1997
+++ isearch-mode.el     Fri May  2 14:11:08 1997
@@ -98,9 +98,9 @@
 
 
 (defun isearch-char-to-string (c)
-  (if (integerp c)
-      (make-string 1 c)
-    (make-string 1 (event-to-character c nil nil t))))
+  (if (eventp c) 
+      (make-string 1 (event-to-character c nil nil t))
+    (make-string 1 c)))
 
 ;(defun isearch-text-char-description (c)
 ;  (isearch-char-to-string c))

