diff options
| author | Lars Magne Ingebrigtsen | 2011-07-15 15:33:07 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-15 15:33:07 +0200 |
| commit | 478615cc10347eac8d0a2846f3364b1d887ae3d5 (patch) | |
| tree | 13c91f101fed0cbe7095ca904e27329a74208e91 | |
| parent | 662498421ef4b06cfa6e27d6be2b09e80ec2bff9 (diff) | |
| download | emacs-478615cc10347eac8d0a2846f3364b1d887ae3d5.tar.gz emacs-478615cc10347eac8d0a2846f3364b1d887ae3d5.zip | |
Doc fix.
* isearch.el (isearch-barrier): Add a doc string, since it's
mentioned in a function doc string.
Fixes: debbugs:8678
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/isearch.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 96f4dd07612..76b1d779843 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * isearch.el (isearch-barrier): Add a doc string, since it's | ||
| 4 | mentioned in a function doc string (bug#8678). | ||
| 5 | |||
| 1 | 2011-07-15 Martin Rudalics <rudalics@gmx.at> | 6 | 2011-07-15 Martin Rudalics <rudalics@gmx.at> |
| 2 | 7 | ||
| 3 | * window.el (switch-to-buffer): Call pop-to-buffer with normalized | 8 | * window.el (switch-to-buffer): Call pop-to-buffer with normalized |
diff --git a/lisp/isearch.el b/lisp/isearch.el index 50e7b331c85..1942641fae9 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -549,7 +549,8 @@ Each set is a vector of the form: | |||
| 549 | (defvar isearch-error nil) ; Error message for failed search. | 549 | (defvar isearch-error nil) ; Error message for failed search. |
| 550 | (defvar isearch-other-end nil) ; Start (end) of match if forward (backward). | 550 | (defvar isearch-other-end nil) ; Start (end) of match if forward (backward). |
| 551 | (defvar isearch-wrapped nil) ; Searching restarted from the top (bottom). | 551 | (defvar isearch-wrapped nil) ; Searching restarted from the top (bottom). |
| 552 | (defvar isearch-barrier 0) | 552 | (defvar isearch-barrier 0 |
| 553 | "Recorded minimum/maximal point for the current search.") | ||
| 553 | (defvar isearch-just-started nil) | 554 | (defvar isearch-just-started nil) |
| 554 | (defvar isearch-start-hscroll 0) ; hscroll when starting the search. | 555 | (defvar isearch-start-hscroll 0) ; hscroll when starting the search. |
| 555 | 556 | ||