summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-28 00:20:42 +0000
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-28 00:20:42 +0000
commitd436970fe8ffcc1addc0288b84581b289d3cf352 (patch)
tree6f9913b7541fad96286adcce195a648eab93c1da
parente561fc1cb16687a153589e70e16ede8de11116af (diff)
downloadgcc-d436970fe8ffcc1addc0288b84581b289d3cf352.tar.gz
* doc/c-tree.texi, doc/cpp.texi, doc/implement-c.texi,
doc/invoke.texi, doc/md.texi, doc/passes.texi, doc/tm.texi: Put punctuation outside quotes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89724 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/doc/c-tree.texi4
-rw-r--r--gcc/doc/cpp.texi8
-rw-r--r--gcc/doc/implement-c.texi2
-rw-r--r--gcc/doc/invoke.texi8
-rw-r--r--gcc/doc/md.texi4
-rw-r--r--gcc/doc/passes.texi4
-rw-r--r--gcc/doc/tm.texi2
8 files changed, 22 insertions, 16 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8199b2a3e92..f561385387e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2004-10-28 Joseph S. Myers <jsm@polyomino.org.uk>
+
+ * doc/c-tree.texi, doc/cpp.texi, doc/implement-c.texi,
+ doc/invoke.texi, doc/md.texi, doc/passes.texi, doc/tm.texi: Put
+ punctuation outside quotes.
+
2004-10-27 David Mosberger <davidm@hpl.hp.com>
James E Wilson <wilson@specifixinc.com>
diff --git a/gcc/doc/c-tree.texi b/gcc/doc/c-tree.texi
index 653eb09874e..ac143f12cb6 100644
--- a/gcc/doc/c-tree.texi
+++ b/gcc/doc/c-tree.texi
@@ -145,7 +145,7 @@ erroneous code, you must be prepared to deal with the
Occasionally, a particular tree slot (like an operand to an expression,
or a particular field in a declaration) will be referred to as
-``reserved for the back end.'' These slots are used to store RTL when
+``reserved for the back end''. These slots are used to store RTL when
the tree is converted to RTL for use by the GCC back end. However, if
that process is not taking place (e.g., if the front end is being hooked
up to an intelligent editor), then those slots may be used by the
@@ -1551,7 +1551,7 @@ returned value for a constructor. The first argument to the
argument is the initializer for the object. The object is initialized
when the @code{RETURN_INIT} is encountered. The object referred to is
the actual object returned; this extension is a manual way of doing the
-``return-value optimization.'' Therefore, the object must actually be
+``return-value optimization''. Therefore, the object must actually be
constructed in the place where the object will be returned.
@item RETURN_STMT
diff --git a/gcc/doc/cpp.texi b/gcc/doc/cpp.texi
index d3e7c9e956c..e0282e09173 100644
--- a/gcc/doc/cpp.texi
+++ b/gcc/doc/cpp.texi
@@ -510,7 +510,7 @@ However, a few of the keywords of C++ are significant even in the
preprocessor. @xref{C++ Named Operators}.
In the 1999 C standard, identifiers may contain letters which are not
-part of the ``basic source character set,'' at the implementation's
+part of the ``basic source character set'', at the implementation's
discretion (such as accented Latin letters, Greek letters, or Chinese
ideograms). This may be done with an extended character set, or the
@samp{\u} and @samp{\U} escape sequences. GCC does not presently
@@ -596,7 +596,7 @@ Punctuator: @{ @} [ ] # ##
@end smallexample
@cindex other tokens
-Any other single character is considered ``other.'' It is passed on to
+Any other single character is considered ``other''. It is passed on to
the preprocessor's output unmolested. The C compiler will almost
certainly reject source code containing ``other'' tokens. In ASCII, the
only other characters are @samp{@@}, @samp{$}, @samp{`}, and control
@@ -1076,7 +1076,7 @@ would have to edit the new headers to match.
There is no way to solve this problem within the C standard, but you can
use the GNU extension @samp{#include_next}. It means, ``Include the
-@emph{next} file with this name.'' This directive works like
+@emph{next} file with this name''. This directive works like
@samp{#include} except in searching for the specified file: it starts
searching the list of header file directories @emph{after} the directory
in which the current file was found.
@@ -4104,7 +4104,7 @@ comma, then @samp{##} behaves as a normal token paste.
@item @samp{#line} and @samp{#include}
The @samp{#line} directive used to change GCC's notion of the
-``directory containing the current file,'' used by @samp{#include} with
+``directory containing the current file'', used by @samp{#include} with
a double-quoted header file name. In 3.0 and later, it does not.
@xref{Line Control}, for further explanation.
diff --git a/gcc/doc/implement-c.texi b/gcc/doc/implement-c.texi
index 7fde145a2e9..841ce75e373 100644
--- a/gcc/doc/implement-c.texi
+++ b/gcc/doc/implement-c.texi
@@ -8,7 +8,7 @@
A conforming implementation of ISO C is required to document its
choice of behavior in each of the areas that are designated
-``implementation defined.'' The following lists all such areas,
+``implementation defined''. The following lists all such areas,
along with the section numbers from the ISO/IEC 9899:1990 and ISO/IEC
9899:1999 standards. Some areas are only implementation-defined in
one version of the standard.
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index ceeae2279aa..c08afdf9fe7 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -3896,8 +3896,8 @@ sequence. For C source files, this is the compiler proper and assembler
# as 0.00 0.01
@end smallexample
-The first number on each line is the ``user time,'' that is time spent
-executing the program itself. The second number is ``system time,''
+The first number on each line is the ``user time'', that is time spent
+executing the program itself. The second number is ``system time'',
time spent executing operating system routines on behalf of the program.
Both numbers are in seconds.
@@ -10760,11 +10760,11 @@ to the GNU linker for 32-bit PowerPC systems as well.
On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
callee, L42'', plus a ``branch island'' (glue code). The two target
-addresses represent the callee and the ``branch island.'' The
+addresses represent the callee and the ``branch island''. The
Darwin/PPC linker will prefer the first address and generate a ``bl
callee'' if the PPC ``bl'' instruction will reach the callee directly;
otherwise, the linker will generate ``bl L42'' to call the ``branch
-island.'' The ``branch island'' is appended to the body of the
+island''. The ``branch island'' is appended to the body of the
calling function; it computes the full 32-bit address of the callee
and jumps to it.
diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi
index e109dfd9ead..6d8d6d1e814 100644
--- a/gcc/doc/md.texi
+++ b/gcc/doc/md.texi
@@ -1307,9 +1307,9 @@ identical. If we are considering an insn of the form
@noindent
the first pattern would not apply at all, because this insn does not
contain two identical subexpressions in the right place. The pattern would
-say, ``That does not look like an add instruction; try other patterns.''
+say, ``That does not look like an add instruction; try other patterns''.
The second pattern would say, ``Yes, that's an add instruction, but there
-is something wrong with it.'' It would direct the reload pass of the
+is something wrong with it''. It would direct the reload pass of the
compiler to generate additional insns to make the constraint true. The
results might look like this:
diff --git a/gcc/doc/passes.texi b/gcc/doc/passes.texi
index 50872f74757..7ecc866616c 100644
--- a/gcc/doc/passes.texi
+++ b/gcc/doc/passes.texi
@@ -110,8 +110,8 @@ definitions immediately or queue them for later processing.
@cindex GIMPLE
@dfn{Gimplification} is a whimsical term for the process of converting
the intermediate representation of a function into the GIMPLE language
-(CROSSREF). The term stuck, and so words like ``gimplification,''
-``gimplify,'' ``gimplifier'' and the like are sprinkled throughout this
+(CROSSREF). The term stuck, and so words like ``gimplification'',
+``gimplify'', ``gimplifier'' and the like are sprinkled throughout this
section of code.
@cindex GENERIC
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi
index 76634af282e..c7a1816ab46 100644
--- a/gcc/doc/tm.texi
+++ b/gcc/doc/tm.texi
@@ -2860,7 +2860,7 @@ Here is the basic stack layout.
Define this macro if pushing a word onto the stack moves the stack
pointer to a smaller address.
-When we say, ``define this macro if @dots{},'' it means that the
+When we say, ``define this macro if @dots{}'', it means that the
compiler checks this macro only with @code{#ifdef} so the precise
definition used does not matter.
@end defmac