diff options
author | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:44:15 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:44:15 +0000 |
commit | 8989a9203f73473569ddf83e505a846609def407 (patch) | |
tree | 2dcc35b588e98388ef66ef39157e9d17290df217 /lisp/isearch.el | |
parent | a4d9b7bca3dc69efe89eecbd81ed96859f7cd818 (diff) | |
download | emacs-8989a9203f73473569ddf83e505a846609def407.tar.gz |
Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r-- | lisp/isearch.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index bed3a7d8de8..9199039ec81 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -1,7 +1,8 @@ ;;; isearch.el --- incremental search minor mode ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, -;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +;; Free Software Foundation, Inc. ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> ;; Maintainer: FSF @@ -954,7 +955,7 @@ REGEXP if non-nil says use the regexp search ring." ;; ;; First terminate isearch-mode. ;; (isearch-done) ;; (isearch-clean-overlays) -;; (handle-switch-frame (car (cdr last-command-char)))) +;; (handle-switch-frame (car (cdr last-command-event)))) ;; The search status structure and stack. @@ -1984,7 +1985,7 @@ Isearch mode." (defun isearch-printing-char () "Add this ordinary printing character to the search string and search." (interactive) - (let ((char last-command-char)) + (let ((char last-command-event)) (if (= char ?\S-\ ) (setq char ?\s)) (if current-input-method |