emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r116619: Some doc related to search-invisible and qu


From: Glenn Morris
Subject: [Emacs-diffs] trunk r116619: Some doc related to search-invisible and query replace
Date: Sat, 01 Mar 2014 02:49:04 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116619
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2014-02-28 18:48:54 -0800
message:
  Some doc related to search-invisible and query replace
  
  * doc/emacs/search.texi (Query Replace): Mention search-invisible.
  
  * doc/emacs/text.texi (Outline Visibility): Mention search-invisible
  also affects query-replace.
  
  * lisp/isearch.el (search-invisible): Doc fix.
  
  * etc/NEWS: Related markup.
modified:
  doc/emacs/ChangeLog            changelog-20091113204419-o5vbwnq5f7feedwu-6227
  doc/emacs/search.texi          
search.texi-20091113204419-o5vbwnq5f7feedwu-6276
  doc/emacs/text.texi            text.texi-20091113204419-o5vbwnq5f7feedwu-6278
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/isearch.el                isearch.el-20091113204419-o5vbwnq5f7feedwu-486
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2014-02-28 03:02:50 +0000
+++ b/doc/emacs/ChangeLog       2014-03-01 02:48:54 +0000
@@ -1,10 +1,17 @@
+2014-03-01  Glenn Morris  <address@hidden>
+
+       * search.texi (Query Replace): Mention search-invisible.
+       * text.texi (Outline Visibility): Mention search-invisible
+       also affects query-replace.
+
 2014-02-28  Xue Fuqiao  <address@hidden>
 
        * emacs.texi (Top):
        * programs.texi (Programs, Prettifying Symbols):
        Document `prettify-symbols-mode' and `global-prettify-symbols-mode'.
 
-       * misc.texi (Saving Emacs Sessions): Document some new desktop user 
options.
+       * misc.texi (Saving Emacs Sessions):
+       Document some new desktop user options.
 
 2014-02-27  Xue Fuqiao  <address@hidden>
 

=== modified file 'doc/emacs/search.texi'
--- a/doc/emacs/search.texi     2014-02-20 08:25:12 +0000
+++ b/doc/emacs/search.texi     2014-03-01 02:48:54 +0000
@@ -1393,6 +1393,10 @@
 used the minibuffer to read its arguments.  @xref{Repetition, C-x ESC
 ESC}.
 
address@hidden invisible text, and query-replace
+  The option @code{search-invisible} determines how @code{query-replace}
+treats invisible text.  @xref{Outline Search}.
+
   @xref{Operating on Files}, for the Dired @kbd{Q} command which
 performs query replace on selected files.  See also @ref{Transforming
 File Names}, for Dired commands to rename, copy, or link files by

=== modified file 'doc/emacs/text.texi'
--- a/doc/emacs/text.texi       2014-02-20 08:25:12 +0000
+++ b/doc/emacs/text.texi       2014-03-01 02:48:54 +0000
@@ -1132,9 +1132,10 @@
 that position, the text remains visible.  To toggle whether or not
 an active incremental search can match hidden text, type @kbd{M-s i}.
 To change the default for future searches, customize the option
address@hidden  You can also automatically make text visible
-as you navigate in it by using Reveal mode (@kbd{M-x reveal-mode}), a
-buffer-local minor mode.
address@hidden  (This option also affects how @code{query-replace}
+and related functions treat hidden text, @pxref{Query Replace}.)
+You can also automatically make text visible as you navigate in it by
+using Reveal mode (@kbd{M-x reveal-mode}), a buffer-local minor mode.
 
 @node Outline Views
 @subsection Viewing One Outline in Multiple Views

=== modified file 'etc/NEWS'
--- a/etc/NEWS  2014-02-28 19:44:32 +0000
+++ b/etc/NEWS  2014-03-01 02:48:54 +0000
@@ -851,6 +851,7 @@
 +++
 *** `M-s i' in Isearch mode toggles whether search matches invisible text.
 
++++
 *** `query-replace' skips invisible text when `search-invisible' is nil,
 and opens overlays with hidden text when `search-invisible' is `open'.
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-03-01 02:31:05 +0000
+++ b/lisp/ChangeLog    2014-03-01 02:48:54 +0000
@@ -1,5 +1,7 @@
 2014-03-01  Glenn Morris  <address@hidden>
 
+       * isearch.el (search-invisible): Doc fix.
+
        * minibuffer.el (completion-hilit-commonality):
        Make `base-size' argument optional.  Short-cut if `prefix-len' is 0.
        * comint.el (comint-dynamic-list-completions): Doc fix.

=== modified file 'lisp/isearch.el'
--- a/lisp/isearch.el   2014-02-20 08:14:20 +0000
+++ b/lisp/isearch.el   2014-03-01 02:48:54 +0000
@@ -131,7 +131,7 @@
   :version "24.3")
 
 (defcustom search-invisible 'open
-  "If t incremental search can match hidden text.
+  "If t incremental search/query-replace can match hidden text.
 A nil value means don't match invisible text.
 When the value is `open', if the text matched is made invisible by
 an overlay having an `invisible' property and that overlay has a property


reply via email to

[Prev in Thread] Current Thread [Next in Thread]