]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix documentation from recent changes
authorEli Zaretskii <eliz@gnu.org>
Fri, 23 Feb 2018 06:54:28 +0000 (08:54 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 23 Feb 2018 06:54:28 +0000 (08:54 +0200)
* 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
doc/emacs/search.texi
lisp/isearch.el

index 91705711b843ec0c6a201a893419fa9b8bf1381e..549ccaf3ae72db85422cf261e6b8419262e954e8 100644 (file)
@@ -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},
+@code{rgrep}, 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
+@code{grep-find-hide} to a @code{nil} value.
 
 @node Flymake
 @section Finding Syntax Errors On The Fly
index 37446ca1c463ffa48fdd7023fdc384cca96d9466..9d7ff59beef24d987a734c9202fa70be2b4b8599 100644 (file)
@@ -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
index b6422401a88266c54fc179974e40c23a61aa29be..a41adf0c2cd45269a6ee6cc5250b8a8cc282087d 100644 (file)
@@ -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))