diff options
author | Jim Blandy <jimb@redhat.com> | 1993-01-26 01:58:16 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-01-26 01:58:16 +0000 |
commit | dbc4e1c12940079cad7b24e1654a0badcda8d6fc (patch) | |
tree | e0fbea5b15bd13d2839c8b59b624cec80f31bfd8 /lisp/isearch.el | |
parent | 72766144811cd7258b2a59e56f6e3657537ea508 (diff) | |
download | emacs-dbc4e1c12940079cad7b24e1654a0badcda8d6fc.tar.gz emacs-dbc4e1c12940079cad7b24e1654a0badcda8d6fc.tar.bz2 emacs-dbc4e1c12940079cad7b24e1654a0badcda8d6fc.zip |
JimB's changes since January 18th
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r-- | lisp/isearch.el | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 2057e40c3f0..6a110214906 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -4,7 +4,7 @@ ;; LCD Archive Entry: ;; isearch-mode|Daniel LaLiberte|liberte@cs.uiuc.edu ;; |A minor mode replacement for isearch.el. -;; |$Date: 1992/11/07 06:17:04 $|$Revision: 1.15 $|~/modes/isearch-mode.el +;; |$Date: 1992/11/16 01:37:06 $|$Revision: 1.16 $|~/modes/isearch-mode.el ;; This file is not yet part of GNU Emacs, but it is based almost ;; entirely on isearch.el which is part of GNU Emacs. @@ -88,8 +88,15 @@ ;;;==================================================================== ;;; Change History -;;; $Header: /home/gd/gnu/emacs/19.0/lisp/RCS/isearch-mode.el,v 1.15 1992/11/07 06:17:04 jimb Exp jimb $ +;;; $Header: /home/gd/gnu/emacs/19.0/lisp/RCS/isearch-mode.el,v 1.16 1992/11/16 01:37:06 jimb Exp jimb $ ;;; $Log: isearch-mode.el,v $ +; Revision 1.16 1992/11/16 01:37:06 jimb +; * bytecomp.el: Declare unread-command-char an obsolete variable. +; * vip.el (vip-escape-to-emacs, vip-prefix-arg-value, +; vip-prefix-arg-com): Use unread-command-event instead of +; unread-command-char; respect its new semantics. +; * isearch-mode.el (isearch-update, isearch-unread): Same. +; ; Revision 1.15 1992/11/07 06:17:04 jimb ; * isearch.el (isearch-frames-exist): This isn't what we want - ; replaced by... @@ -557,7 +564,7 @@ is treated as a regexp. See \\[isearch-forward] for more info." (if (if isearch-event-data-type (null unread-command-event) (if isearch-gnu-emacs-events - (null unread-command-event) + (null unread-command-events) (< unread-command-char 0))) (progn (if (not (input-pending-p)) @@ -1413,6 +1420,7 @@ have special meaning in a regexp." ;; To quiet the byte-compiler. (defvar unread-command-event) +(defvar unread-command-events) (defvar last-command-event) (defun isearch-char-to-string (c) @@ -1429,7 +1437,7 @@ have special meaning in a regexp." (isearch-event-data-type (setq unread-command-event char-or-event)) (isearch-gnu-emacs-events - (setq unread-command-event char-or-event)) + (setq unread-command-events (list char-or-event))) (t (setq unread-command-char char-or-event)))) |