aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2008-07-24 00:28:06 +0000
committerJuri Linkov2008-07-24 00:28:06 +0000
commitbabc46090c200a3391b689beb1af8c12726a3103 (patch)
tree4818ccce0a97521a33321cc0a2d743e5cde5ed99
parente70e37663bbcf2d4d9e9540aa888d61be7bd82da (diff)
downloademacs-babc46090c200a3391b689beb1af8c12726a3103.tar.gz
emacs-babc46090c200a3391b689beb1af8c12726a3103.zip
Document misearch.el and multi-isearch commands.
-rw-r--r--etc/NEWS17
1 files changed, 11 insertions, 6 deletions
diff --git a/etc/NEWS b/etc/NEWS
index f208b324d30..af4af68f1db 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -661,8 +661,11 @@ runs `occur' with the current search string.
661When running isearch in a ChangeLog file, if the search fails, 661When running isearch in a ChangeLog file, if the search fails,
662then another C-s tries searching the previous ChangeLog, 662then another C-s tries searching the previous ChangeLog,
663if there is one (e.g. go from ChangeLog to ChangeLog.12). 663if there is one (e.g. go from ChangeLog to ChangeLog.12).
664This is enabled if multi-isearch-search is non-nil.
664 665
665This is enabled if isearch-buffers-multi is non-nil. 666*** Two new commands to start Isearch on a list of marked buffers
667for buff-menu.el and ibuffer.el are bound to the keys "M-s a C-s" and
668"M-s a M-C-s".
666 669
667*** The part of an isearch that failed to match is highlighted in `isearch-fail' 670*** The part of an isearch that failed to match is highlighted in `isearch-fail'
668face. 671face.
@@ -1400,11 +1403,13 @@ declare-function macros (see Lisp Changes, above).
1400 1403
1401** find-cmd.el can build `find' commands using lisp syntax. 1404** find-cmd.el can build `find' commands using lisp syntax.
1402 1405
1403** The package isearch-multi.el has been added. It implements a new mode 1406** The package misearch.el has been added. It allows Isearch to search
1404`isearch-buffers-minor-mode' that allows isearch to search through 1407through multiple buffers. A variable `multi-isearch-next-buffer-function'
1405multiple buffers. In this mode a new variable 1408defines the function to call to get the next buffer to search in the series
1406`isearch-buffers-next-buffer-function' defines the function to call 1409of multiple buffers. Top-level commands `multi-isearch-buffers',
1407to get the next buffer to search in the series of multiple buffers. 1410`multi-isearch-buffers-regexp', `multi-isearch-files' and
1411`multi-isearch-files-regexp' accept a single argument that specifies
1412a list of buffers/files to search for a string/regexp.
1408 1413
1409** The new major mode `special-mode' is intended as a parent for 1414** The new major mode `special-mode' is intended as a parent for
1410major modes such as those that set the "'mode-class 'special" property. 1415major modes such as those that set the "'mode-class 'special" property.