Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f551b97d
Commit
f551b97d
authored
Jan 19, 1994
by
Richard M. Stallman
Browse files
(isearch-push-state): Save isearch-case-fold-search.
(isearch-top-state): Restore it.
parent
ec171d2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
lisp/isearch.el
lisp/isearch.el
+4
-3
No files found.
lisp/isearch.el
View file @
f551b97d
...
...
@@ -4,7 +4,7 @@
;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
;; |$Date: 1994/01/1
5 16:24:47
$|$Revision: 1.6
1
$
;; |$Date: 1994/01/1
6 23:40:50
$|$Revision: 1.6
2
$
;; 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)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment