From xemacs-m  Wed Feb 19 10:46:19 1997
Received: from CNRI.Reston.VA.US (CNRI.Reston.VA.US [132.151.1.1])
	by xemacs.org (8.8.5/8.8.5) with SMTP id KAA07938
	for <xemacs-beta@xemacs.org>; Wed, 19 Feb 1997 10:46:18 -0600 (CST)
Received: from newcnri.cnri.reston.va.us by CNRI.Reston.VA.US id aa19919;
          19 Feb 97 11:44 EST
Received: from anthem.CNRI.Reston.Va.US by newcnri.CNRI.Reston.Va.US (SMI-8.6/SMI-SVR4)
	id LAA17819; Wed, 19 Feb 1997 11:44:43 -0500
Received: by anthem.CNRI.Reston.Va.US (SMI-8.6/SMI-SVR4)
	id LAA00618; Wed, 19 Feb 1997 11:44:42 -0500
Date: Wed, 19 Feb 1997 11:44:42 -0500
Message-Id: <199702191644.LAA00618@anthem.CNRI.Reston.Va.US>
From: "Barry A. Warsaw" <bwarsaw@anthem.cnri.reston.va.us>
MIME-Version: 1.0
Content-Type: multipart/mixed;
	boundary="K7dpmxQ4LEE+fXRjMHMI1lEBASzA/V+oWgtKkss8"
Content-Transfer-Encoding: 7bit
To: xemacs-beta@xemacs.org
Subject: b93 minor bug in ispell.el
Reply-To: "Barry A. Warsaw" <bwarsaw@CNRI.Reston.VA.US>
X-Attribution: BAW
X-Oblique-Strategy: Listen to the quiet voice
X-WWW-Homepage: http://www.python.org/~bwarsaw


--K7dpmxQ4LEE+fXRjMHMI1lEBASzA/V+oWgtKkss8
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit


Haven't had time to install b94.  To reproduce, misspell a word, run
ispell and when it asks you what you want to do, hit `?' to get more
options.  This tries to call set-minibuffer-window, which isn't
defined.   Attached is a patch.  Not sure if it's the *right* patch,
but ispell seems to work fine for me afterwards.

-Barry


--K7dpmxQ4LEE+fXRjMHMI1lEBASzA/V+oWgtKkss8
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

*** ispell.el	1997/02/19 16:38:30	1.1
--- ispell.el	1997/02/19 16:39:46
***************
*** 1271,1275 ****
  	       ;; Make sure we display the minibuffer
  	       ;; in this window, not some other.
! 	       (set-minibuffer-window (selected-window))
  	       (insert (concat help-1 "\n" help-2 "\n" help-3))))
  	(sit-for 5)
--- 1271,1276 ----
  	       ;; Make sure we display the minibuffer
  	       ;; in this window, not some other.
! 	       (if (fboundp 'set-minibuffer-window)
! 		   (set-minibuffer-window (selected-window)))
  	       (insert (concat help-1 "\n" help-2 "\n" help-3))))
  	(sit-for 5)

--K7dpmxQ4LEE+fXRjMHMI1lEBASzA/V+oWgtKkss8
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit



--K7dpmxQ4LEE+fXRjMHMI1lEBASzA/V+oWgtKkss8--

