aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/isearch.el4
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c3609617467..04bea69a5cc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12014-02-08 Lars Ingebrigtsen <larsi@gnus.org> 12014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
2 2
3 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
4
3 * replace.el (replace-match-maybe-edit): Doc clarification 5 * replace.el (replace-match-maybe-edit): Doc clarification
4 (bug#15632). 6 (bug#15632).
5 7
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 4749846d509..9da1019bf46 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -569,8 +569,8 @@ matches literally, against one space. You can toggle the value of this
569variable by the command `isearch-toggle-lax-whitespace'.") 569variable by the command `isearch-toggle-lax-whitespace'.")
570 570
571(defvar isearch-cmds nil 571(defvar isearch-cmds nil
572 "Stack of search status sets. 572 "Stack of search status elements.
573Each set is a vector of the form: 573Each element is an `isearch--state' struct where the slots are
574 [STRING MESSAGE POINT SUCCESS FORWARD OTHER-END WORD 574 [STRING MESSAGE POINT SUCCESS FORWARD OTHER-END WORD
575 INVALID-REGEXP WRAPPED BARRIER WITHIN-BRACKETS CASE-FOLD-SEARCH]") 575 INVALID-REGEXP WRAPPED BARRIER WITHIN-BRACKETS CASE-FOLD-SEARCH]")
576 576