summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/rscpp/cpp1.c4
-rw-r--r--rsc/source/rscpp/cpp2.c4
-rw-r--r--rsc/source/rscpp/cpp3.c2
-rw-r--r--rsc/source/rscpp/cpp5.c4
4 files changed, 7 insertions, 7 deletions
diff --git a/rsc/source/rscpp/cpp1.c b/rsc/source/rscpp/cpp1.c
index e1688f0dadbb..8c03af548db6 100644
--- a/rsc/source/rscpp/cpp1.c
+++ b/rsc/source/rscpp/cpp1.c
@@ -118,7 +118,7 @@ char *workp; /* Work buffer pointer */
* the output from cpp is to be passed to lint (which uses commands
* embedded in comments). cflag contains the permanent state of the
* -C flag. keepcomments is always falsified when processing #control
- * commands and when compilation is supressed by a false #if
+ * commands and when compilation is suppressed by a false #if
*
* If eflag is set, CPP returns "success" even if non-fatal errors
* were detected.
@@ -155,7 +155,7 @@ char **incend = incdir; /* -> free space in incdir[] */
* This is the table used to predefine target machine and operating
* system designators. It may need hacking for specific circumstances.
* Note: it is not clear that this is part of the Ansi Standard.
- * The -N option supresses preset definitions.
+ * The -N option suppresses preset definitions.
*/
char *preset[] = { /* names defined at cpp start */
#ifdef MACHINE
diff --git a/rsc/source/rscpp/cpp2.c b/rsc/source/rscpp/cpp2.c
index 8da4100c8be7..1431e154ad3e 100644
--- a/rsc/source/rscpp/cpp2.c
+++ b/rsc/source/rscpp/cpp2.c
@@ -315,8 +315,8 @@ void doif(int hash)
* while #if needs a subroutine of its own to evaluate the expression.
*
* doif() is called only if compiling is TRUE. If false, compilation
- * is always supressed, so we don't need to evaluate anything. This
- * supresses unnecessary warnings.
+ * is always suppressed, so we don't need to evaluate anything. This
+ * suppresses unnecessary warnings.
*/
{
register int c;
diff --git a/rsc/source/rscpp/cpp3.c b/rsc/source/rscpp/cpp3.c
index df5a2c7acf70..b14f4f85a3b9 100644
--- a/rsc/source/rscpp/cpp3.c
+++ b/rsc/source/rscpp/cpp3.c
@@ -431,7 +431,7 @@ void initdefines()
* #define __FILE__ ?? (dynamic, evaluated by magic)
* Called only on cpp startup.
*
- * Note: the built-in static definitions are supressed by the -N option.
+ * Note: the built-in static definitions are suppressed by the -N option.
* __LINE__, __FILE__, and __DATE__ are always present.
*/
{
diff --git a/rsc/source/rscpp/cpp5.c b/rsc/source/rscpp/cpp5.c
index 091b594f3deb..09a1c5c4119a 100644
--- a/rsc/source/rscpp/cpp5.c
+++ b/rsc/source/rscpp/cpp5.c
@@ -45,7 +45,7 @@ static char *opname[] = { /* For debug and error messages */
* 10 The new value of the binop flag.
* Note: Expected, New binop
* constant 0 1 Binop, end, or ) should follow constants
- * End of line 1 0 End may not be preceeded by an operator
+ * End of line 1 0 End may not be preceded by an operator
* binary 1 0 Binary op follows a value, value follows.
* unary 0 0 Unary op doesn't follow a value, value follows
* ( 0 0 Doesn't follow value, value or unop follows
@@ -205,7 +205,7 @@ eval()
* evaleval Evaluate the current operator, given the values on
* the value stack. Returns a pointer to the (new)
* value stack.
- * For compatiblity with older cpp's, this return returns 1 (TRUE)
+ * For compatibility with older cpp's, this return returns 1 (TRUE)
* if a syntax error is detected.
*/
{