aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorGlenn Morris2019-06-11 08:38:34 -0700
committerGlenn Morris2019-06-11 08:38:34 -0700
commite17cda4942adf353fb7adc4bcdaa61a1ae79db8d (patch)
treeff5f524568260a2823023c2a8e7dde84fc6ae1e0 /doc/misc
parentef744119a7cbd0692c53704604e9bb6345c371b6 (diff)
parent758e9a8ed49c15f7069a67cf0c2ce3c6f9a3f7e1 (diff)
downloademacs-e17cda4942adf353fb7adc4bcdaa61a1ae79db8d.tar.gz
emacs-e17cda4942adf353fb7adc4bcdaa61a1ae79db8d.zip
Merge from origin/emacs-26
758e9a8 Revert "Don't mark main_thread (Bug#36155)" 1877b7b Don't mark main_thread (Bug#36155) 4904fb3 More quotation fixes (Bug#35885) 4cc4b5d ; * src/keyboard.c (tool_bar_items): Fix a typo. (Bug#36143) b58ecaf Minor copyedits in efaq-w32 48422af Tiny improvement of documentation of major mode conventions 25d44d2 * nt/addpm.c (main): Fix buffer overflow
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/efaq-w32.texi6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/misc/efaq-w32.texi b/doc/misc/efaq-w32.texi
index 8e067a7a269..cdd01e47f00 100644
--- a/doc/misc/efaq-w32.texi
+++ b/doc/misc/efaq-w32.texi
@@ -1820,7 +1820,8 @@ If you want a quick solution without installing extra tools, a poor
1820substitute that works for simple text searches is to specify the built 1820substitute that works for simple text searches is to specify the built
1821in Windows command @command{findstr} as the command to run at the 1821in Windows command @command{findstr} as the command to run at the
1822@kbd{M-x grep} prompt. Normally you will want to use the @option{/n} 1822@kbd{M-x grep} prompt. Normally you will want to use the @option{/n}
1823argument to @command{findstr}. 1823argument to @command{findstr}, to have it print the line numbers for
1824each hit.
1824 1825
1825@menu 1826@menu
1826* Recursive grep:: 1827* Recursive grep::
@@ -1860,7 +1861,8 @@ path to the findutils @command{find} command.
1860An alternative if you have a recent version of grep is to customize 1861An alternative if you have a recent version of grep is to customize
1861@code{grep-find-command} to use @samp{grep -r} instead of both find 1862@code{grep-find-command} to use @samp{grep -r} instead of both find
1862and grep. Another alternative if you don't need the full capabilities 1863and grep. Another alternative if you don't need the full capabilities
1863of grep is to use @samp{findstr /n /r}. 1864of grep is to use @samp{findstr /n /r}; add the @samp{/s} option if
1865you want a recursive search.
1864 1866
1865@c ------------------------------------------------------------ 1867@c ------------------------------------------------------------
1866@node Developing with Emacs 1868@node Developing with Emacs