aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2014-02-07 20:02:37 -0800
committerLars Ingebrigtsen2014-02-07 20:02:37 -0800
commit0d8a4ae73ca2296409f0d9f893e7c3ad76cb5e18 (patch)
tree081b02a94d332a1c613a50a05a3b11926635cad1
parent85ade7eee673dc1df4483f925ff748a10e903353 (diff)
downloademacs-0d8a4ae73ca2296409f0d9f893e7c3ad76cb5e18.tar.gz
emacs-0d8a4ae73ca2296409f0d9f893e7c3ad76cb5e18.zip
* isearch.el (isearch-cmds): Doc clarification.
Fixes: debbugs:15547
-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