From 088b1b864c3e6f3962636f5c2308608d01097c39 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 23 Feb 2018 08:54:28 +0200 Subject: [PATCH] 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 91705711b84..549ccaf3ae7 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}, +@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 diff --git a/doc/emacs/search.texi b/doc/emacs/search.texi index 37446ca1c46..9d7ff59beef 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 b6422401a88..a41adf0c2cd 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)) -- 2.11.4.GIT