aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-09-11 17:16:07 +0000
committerRichard M. Stallman2006-09-11 17:16:07 +0000
commitf489fc25190b6719dd28008b3ac85566cfc13e96 (patch)
treeffa7d057d9a011bc0c331814422444ca305a1364
parentb110774acbba4db95baf6c666769f3bc2a0269b6 (diff)
downloademacs-f489fc25190b6719dd28008b3ac85566cfc13e96.tar.gz
emacs-f489fc25190b6719dd28008b3ac85566cfc13e96.zip
(Compilation Mode): Clarification.
(Grep Searching): Add xref to Compilation Mode.
-rw-r--r--man/ChangeLog7
-rw-r--r--man/building.texi14
2 files changed, 14 insertions, 7 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 29e86a400a7..9980175fe56 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,4 +1,9 @@
12006-09-09 Reiner Steib <Reiner.Steib@gmx.de> 12006-09-11 Richard Stallman <rms@gnu.org>
2
3 * building.texi (Compilation Mode): Clarification.
4 (Grep Searching): Add xref to Compilation Mode.
5
62006-09-11 Reiner Steib <Reiner.Steib@gmx.de>
2 7
3 * gnus.texi (Mail Source Specifiers): Mention problem of duplicate 8 * gnus.texi (Mail Source Specifiers): Mention problem of duplicate
4 mails with pop3-leave-mail-on-server. Fix wording. 9 mails with pop3-leave-mail-on-server. Fix wording.
diff --git a/man/building.texi b/man/building.texi
index 01cdf88fe39..451246ae55d 100644
--- a/man/building.texi
+++ b/man/building.texi
@@ -210,9 +210,9 @@ click @kbd{Mouse-2} on the error message; you need not switch to the
210backquote or ``grave accent,'' not the single-quote. This command is 210backquote or ``grave accent,'' not the single-quote. This command is
211available in all buffers, not just in @samp{*compilation*}; it 211available in all buffers, not just in @samp{*compilation*}; it
212displays the next error message at the top of one window and source 212displays the next error message at the top of one window and source
213location of the error in another window. It also momentarily 213location of the error in another window. It also temporarily
214highlights the relevant source line. You can change the behavior of 214highlights the relevant source line, for a period controlled by the
215this highlighting with the variable @code{next-error-highlight}. 215variable @code{next-error-highlight}.
216 216
217 The first time @w{@kbd{C-x `}} is used after the start of a compilation, 217 The first time @w{@kbd{C-x `}} is used after the start of a compilation,
218it moves to the first error's location. Subsequent uses of @kbd{C-x 218it moves to the first error's location. Subsequent uses of @kbd{C-x
@@ -335,9 +335,11 @@ Emacs.
335@section Searching with Grep under Emacs 335@section Searching with Grep under Emacs
336 336
337 Just as you can run a compiler from Emacs and then visit the lines 337 Just as you can run a compiler from Emacs and then visit the lines
338with compilation errors, you can also run @code{grep} and 338with compilation errors, you can also run @code{grep} and then visit
339then visit the lines on which matches were found. This works by 339the lines on which matches were found. This works by treating the
340treating the matches reported by @code{grep} as if they were ``errors.'' 340matches reported by @code{grep} as if they were ``errors.'' The
341buffer of matches uses Grep mode, which is a variant of Compilation
342mode (@pxref{Compilation Mode}).
341 343
342@table @kbd 344@table @kbd
343@item M-x grep 345@item M-x grep