1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-07 20:54:32 +00:00

* isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).

This commit is contained in:
Chong Yidong 2010-01-22 11:32:31 -05:00
parent 6a801864b1
commit 9425f8e1b3
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-01-22 Chong Yidong <cyd@stupidchicken.com>
* isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
2010-01-22 Eli Zaretskii <eliz@gnu.org>
* jka-compr.el (jka-compr-load): If load-file is not in

View File

@ -1754,7 +1754,10 @@ Scroll-bar or mode-line events are processed appropriately."
(put 'digit-argument 'isearch-scroll t)
(defcustom isearch-allow-scroll nil
"If non-nil, scrolling commands are allowed during incremental search."
"Whether scrolling is allowed during incremental search.
If non-nil, scrolling commands can be used in Isearch mode.
However, the current match will never scroll offscreen.
If nil, scolling commands will first cancel Isearch mode."
:type 'boolean
:group 'isearch)