emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 088b1b8: Fix documentation from recent changes


From: Eli Zaretskii
Subject: [Emacs-diffs] master 088b1b8: Fix documentation from recent changes
Date: Fri, 23 Feb 2018 01:54:58 -0500 (EST)

branch: master
commit 088b1b864c3e6f3962636f5c2308608d01097c39
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix documentation from recent changes
    
    * lisp/isearch.el (isearch-yank-symbol-or-char): Doc fix.
    
    * doc/emacs/search.texi (Isearch Yank): Fix wording.
    * doc/emacs/building.texi (Grep Searching): Fix last change.
---
 doc/emacs/building.texi | 11 +++++++----
 doc/emacs/search.texi   |  2 +-
 lisp/isearch.el         |  2 +-
 3 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/doc/emacs/building.texi b/doc/emacs/building.texi
index 9170571..549ccaf 100644
--- a/doc/emacs/building.texi
+++ b/doc/emacs/building.texi
@@ -435,10 +435,13 @@ the variable @code{grep-files-aliases}.
 by various version control systems.
 
 @vindex grep-find-hide
-  The boolean option @code{grep-find-hide} controls shortening of the
-displayed command line by hiding the part containing ignored
-directories and files.  The hidden part can be revealed by clicking on
-the button with ellipsis.
+  By default, the shell commands constructed for @code{lgrep},
address@hidden, and @code{zgrep} are abbreviated for display by
+concealing the part that contains a long list of files and directories
+to ignore.  You can reveal the concealed part by clicking on the
+button with ellipsis, which represents them.  To disable this
+abbreviation of the shell commands, customize the option
address@hidden to a @code{nil} value.
 
 @node Flymake
 @section Finding Syntax Errors On The Fly
diff --git a/doc/emacs/search.texi b/doc/emacs/search.texi
index 37446ca..9d7ff59 100644
--- a/doc/emacs/search.texi
+++ b/doc/emacs/search.texi
@@ -234,7 +234,7 @@ of whether to copy a character or a word is heuristic.)
   @kbd{C-M-w} (@code{isearch-yank-symbol-or-char}) appends the next
 character or symbol at point to the search string.  This is an easy way
 to search for another occurrence of the symbol at point.  (The decision
-of whether to copy a character or a word is heuristic.)
+of whether to copy a character or a symbol is heuristic.)
 
 @kindex M-s C-e @r{(Incremental search)}
 @findex isearch-yank-line
diff --git a/lisp/isearch.el b/lisp/isearch.el
index b642240..a41adf0 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -2106,7 +2106,7 @@ If optional ARG is non-nil, pull in the next ARG 
characters."
   (isearch--yank-char-or-syntax '(?w) 'forward-word))
 
 (defun isearch-yank-symbol-or-char ()
-  "Pull next character or word from buffer into search string."
+  "Pull next character or symbol from buffer into search string."
   (interactive)
   (isearch--yank-char-or-syntax '(?w ?_) 'forward-symbol))
 



reply via email to

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