changeset 2296:91fe00141e95

* isearch.el (isearch-switch-frame-handler): Call handle-switch-frame instead of select-frame; it has been renamed.
author Jim Blandy <jimb@redhat.com>
date Sun, 21 Mar 1993 05:50:17 +0000
parents 0d8ce1b8ceee
children bb88d48c290f
files lisp/isearch.el
diffstat 1 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/isearch.el	Sun Mar 21 05:14:35 1993 +0000
+++ b/lisp/isearch.el	Sun Mar 21 05:50:17 1993 +0000
@@ -4,7 +4,7 @@
 
 ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
 
-;; |$Date: 1993/03/17 16:44:50 $|$Revision: 1.25 $
+;; |$Date: 1993/03/17 17:17:05 $|$Revision: 1.26 $
 
 ;; This file is not yet part of GNU Emacs, but it is based almost
 ;; entirely on isearch.el which is part of GNU Emacs.
@@ -92,8 +92,11 @@
 ;;;====================================================================
 ;;; Change History
 
-;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.25 1993/03/17 16:44:50 eric Exp eric $
+;;; $Header: /home/gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.26 1993/03/17 17:17:05 eric Exp jimb $
 ;;; $Log: isearch.el,v $
+; Revision 1.26  1993/03/17  17:17:05  eric
+; Add standard library headers.
+;
 ; Revision 1.25  1993/03/17  16:44:50  eric
 ; Add standard library headers.
 ;
@@ -702,7 +705,7 @@
   (interactive) ;; Is this necessary?
   ;; First terminate isearch-mode.
   (isearch-done)
-  (select-frame (car (cdr (isearch-last-command-char)))))
+  (handle-switch-frame (car (cdr (isearch-last-command-char)))))
 
 ;;;========================================================