summaryrefslogtreecommitdiff
path: root/lisp/isearch.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-01-19 18:45:34 +0000
committerRichard M. Stallman <rms@gnu.org>1994-01-19 18:45:34 +0000
commit0fca473e808a9e2adf89338b5e89fbd5f6168590 (patch)
tree6241bd8121974587298d19a0ff1e834acb63bf54 /lisp/isearch.el
parent898d0b0e4c814033ab8b812e58190704e8701995 (diff)
downloademacs-0fca473e808a9e2adf89338b5e89fbd5f6168590.tar.gz
(isearch-push-state): Save isearch-case-fold-search.
(isearch-top-state): Restore it.
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r--lisp/isearch.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 7fd87e05e95..11f829c3af5 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -4,7 +4,7 @@
;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
-;; |$Date: 1994/01/15 16:24:47 $|$Revision: 1.61 $
+;; |$Date: 1994/01/16 23:40:50 $|$Revision: 1.62 $
;; This file is part of GNU Emacs.
@@ -1240,7 +1240,8 @@ If there is no completion possible, say so and continue searching."
isearch-invalid-regexp (nth 7 cmd)
isearch-wrapped (nth 8 cmd)
isearch-barrier (nth 9 cmd)
- isearch-within-brackets (nth 10 cmd))
+ isearch-within-brackets (nth 10 cmd)
+ isearch-case-fold-search (nth 11 cmd))
(goto-char (car (cdr (cdr cmd))))))
(defun isearch-pop-state ()
@@ -1254,7 +1255,7 @@ If there is no completion possible, say so and continue searching."
isearch-success isearch-forward isearch-other-end
isearch-word
isearch-invalid-regexp isearch-wrapped isearch-barrier
- isearch-within-brackets)
+ isearch-within-brackets isearch-case-fold-search)
isearch-cmds)))