diff options
author | Rical Jasan <ricaljasan@pacific.net> | 2018-01-24 01:03:38 -0800 |
---|---|---|
committer | Rical Jasan <ricaljasan@pacific.net> | 2018-02-09 04:40:48 -0800 |
commit | 1f6676d7da1b7c864e9a5d59fe9162a88bd21952 (patch) | |
tree | aa1169d408854b670722950671c44aa3c695ed2f /manual/creature.texi | |
parent | 15081be9938d0b84634e81b7f0e433ff62406430 (diff) | |
download | glibc-1f6676d7da1b7c864e9a5d59fe9162a88bd21952.tar glibc-1f6676d7da1b7c864e9a5d59fe9162a88bd21952.tar.gz glibc-1f6676d7da1b7c864e9a5d59fe9162a88bd21952.tar.bz2 glibc-1f6676d7da1b7c864e9a5d59fe9162a88bd21952.zip |
manual: Fix Texinfo warnings about improper node names.
A number of cross-references to the GCC info manual cause Texinfo
warnings; e.g.:
./creature.texi:11: warning: @xref node name should not contain `.'
This is due to "gcc.info" being used in the INFO-FILE-NAME (fourth)
argument. Changing it to "gcc" removes these warnings. (Manually
confirmed equivalent behaviour for make info, html, and pdf.)
* manual/creature.texi: Convert references to gcc.info to gcc.
* manual/stdio.texi: Likewise.
* manual/string.texi: Likewise.
Diffstat (limited to 'manual/creature.texi')
-rw-r--r-- | manual/creature.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/creature.texi b/manual/creature.texi index 96f8ee0a0c..2e05958756 100644 --- a/manual/creature.texi +++ b/manual/creature.texi @@ -8,7 +8,7 @@ is controlled by which @dfn{feature test macros} you define. If you compile your programs using @samp{gcc -ansi}, you get only the @w{ISO C} library features, unless you explicitly request additional features by defining one or more of the feature macros. -@xref{Invoking GCC,, GNU CC Command Options, gcc.info, The GNU CC Manual}, +@xref{Invoking GCC,, GNU CC Command Options, gcc, The GNU CC Manual}, for more information about GCC options.@refill You should define these macros by using @samp{#define} preprocessor |