[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] fix comment typos
From: |
Jim Meyering |
Subject: |
[PATCH] fix comment typos |
Date: |
Sun, 03 Jun 2012 21:58:01 +0200 |
Here are a few automatically-performed typo fixes:
(possibly mangled due to ^M's in config.bat)
>From 20ad79a6084472a518ccf9d8fa7f330d864de987 Mon Sep 17 00:00:00 2001
From: Jim Meyering <address@hidden>
Date: Sun, 3 Jun 2012 21:54:52 +0200
Subject: [PATCH] fix comment typos
Using http://github.com/lyda/misspell-check, massage its
output into sed commands to perform the suggested changes:
(the sole filter is to avoid changing the THRU tokens in a grammar)
git ls-files|misspellings -f -|perl -nl \
-e '/^(.*?)\[(\d+)\]: (\w+) -> "(.*?)"$/ or next;' \
-e '($file,$n,$l,$r)=($1,$2,$3,$4); $q="'\''"; $r=~s/$q/$q\\$q$q/g;'\
-e 'print "sed -i $q${n}s!$l!$r!$q $file"'|grep -vw THRU|bash
---
ChangeLog-2012 | 18 +++++++++---------
data/lalr1.cc | 2 +-
data/yacc.c | 2 +-
djgpp/README.in | 2 +-
djgpp/config.bat | 2 +-
src/parse-gram.c | 2 +-
tests/local.at | 2 +-
7 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/ChangeLog-2012 b/ChangeLog-2012
index faa7e18..35e6948 100644
--- a/ChangeLog-2012
+++ b/ChangeLog-2012
@@ -4655,7 +4655,7 @@
* src/output.c (symbol_definitions_output): Use it to define "id"
and "has_id".
Remove the definition of "tag_is_id".
- * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
+ * data/lalr1.cc: Use the "id" and "has_id" wherever "tag" and
"tag_is_id" were used to produce code.
We still use "tag" for documentation.
@@ -5200,7 +5200,7 @@
2008-11-09 Akim Demaille <address@hidden>
- Agregate yylval and yylloc.
+ Aggregate yylval and yylloc.
* data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
(parser::yyla): this.
@@ -5358,7 +5358,7 @@
* data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
(b4_variant_if): New.
(variant::built): New.
- Use it whereever the status of the variant changes.
+ Use it wherever the status of the variant changes.
* etc/bench.pl.in: Check the penalty of %define assert.
2008-11-07 Akim Demaille <address@hidden>
@@ -10643,7 +10643,7 @@
(PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
which is now, again, a separate token.
Adjust all dependencies.
- Whereever actions with $ and @ are used, use translate_code.
+ Wherever actions with $ and @ are used, use translate_code.
(action): Remove this nonterminal which is now useless.
* src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
(grammar_current_rule_action_append): Use translate_code.
@@ -11829,10 +11829,10 @@
* Makefile.am: DJGPP specific files added to EXTRA_DIST.
* djgpp/Makefile.maint: Fix PACKAGE variable computation.
- * djgpp/config.bat: Replace every occurence of the file name
+ * djgpp/config.bat: Replace every occurrence of the file name
scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
- * djgpp/config.sed: Replace every occurence of the file name
+ * djgpp/config.sed: Replace every occurrence of the file name
scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
* djgpp/djunpack.bat: DJGPP specific file.
@@ -15105,7 +15105,7 @@
(YYERROR): Goto to yyerrorlab, not yyerrlab1.
(yyerrlab1): Remove, but where it used to be (now the bottom part of
yyerrlab), when hitting EOF, pop the whole stack here instead of
- merely falling thru the default error handling mechanism.
+ merely falling through the default error handling mechanism.
(yyerrorlab): New label, with the old contents of YYERROR,
plus the following change: pop the stack of rhs corresponding
to the production that invoked YYERROR. That is how Yacc
@@ -18827,7 +18827,7 @@
2002-07-30 Akim Demaille <address@hidden>
- `stage' was accidently included in a previous patch.
+ `stage' was accidentally included in a previous patch.
Initiate its autoconfiscation.
* configure.in: Look for malloc.h and sys/times.h.
@@ -21830,7 +21830,7 @@
(insert_accepting_state, augment_automaton): Remove, since now
these states are automatically computed from the initial state.
(generate_states): Adjust.
- * src/print.c: When reporting a rule number to the user, substract
+ * src/print.c: When reporting a rule number to the user, subtract
1, so that the axiom rule is rule 0, and the first user rule is 1.
* src/reduce.c: Likewise.
* src/print_graph.c (print_core): For the time being, just as for
diff --git a/data/lalr1.cc b/data/lalr1.cc
index 92f93c2..b8334e8 100644
--- a/data/lalr1.cc
+++ b/data/lalr1.cc
@@ -850,7 +850,7 @@ m4_ifdef([b4_lex_param], [, ]b4_lex_param)));])[
// Destroy a variant which value may have been swapped with
// yylhs.value (for instance if the action was "std::swap($$,
// $1)"). The value of yylhs.value (hence possibly one of these
- // rhs symbols) depends on the default contruction for this
+ // rhs symbols) depends on the default construction for this
// type. In the case of pointers for instance, no
// initialization is done, so the value is junk. Therefore do
// not try to report the value of symbols about to be destroyed
diff --git a/data/yacc.c b/data/yacc.c
index cb6d8e5..0cc17f3 100644
--- a/data/yacc.c
+++ b/data/yacc.c
@@ -199,7 +199,7 @@ m4_define([b4_declare_parser_state_variables],
[b4_pure_if([[
`yyvs': related to semantic values.]b4_locations_if([[
`yyls': related to locations.]])[
- Refer to the stacks thru separate pointers, to allow yyoverflow
+ Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
diff --git a/djgpp/README.in b/djgpp/README.in
index 154c8a2..60fd952 100644
--- a/djgpp/README.in
+++ b/djgpp/README.in
@@ -179,7 +179,7 @@ along with this program. If not, see
<http://www.gnu.org/licenses/>.
This will install the products into your DJGPP installation tree given
by the default prefix "/dev/env/DJDIR". If you prefer to install them
- into some other directory you will have to set prefix to the appropiate
+ into some other directory you will have to set prefix to the appropriate
value:
make install prefix=z:/some/other/place
diff --git a/djgpp/config.bat b/djgpp/config.bat
index e30c939..ab566d7 100644
--- a/djgpp/config.bat
+++ b/djgpp/config.bat
@@ -471,7 +471,7 @@ redir -e /dev/null rm %XSRC%/po/stamp-cat-id
Rem Update the arguments file for the configure script.
Rem We prefer without-included-gettext because libintl.a from gettext package
-Rem is the only one that is garanteed to have been ported to DJGPP.
+Rem is the only one that is guaranteed to have been ported to DJGPP.
echo --enable-nls --without-included-gettext >> args
goto ConfigurePackage
diff --git a/src/parse-gram.c b/src/parse-gram.c
index 24ff8f0..2cfebe4 100644
--- a/src/parse-gram.c
+++ b/src/parse-gram.c
@@ -1937,7 +1937,7 @@ YYLTYPE yylloc;
`yyvs': related to semantic values.
`yyls': related to locations.
- Refer to the stacks thru separate pointers, to allow yyoverflow
+ Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
diff --git a/tests/local.at b/tests/local.at
index c71a2a9..a53f1d1 100644
--- a/tests/local.at
+++ b/tests/local.at
@@ -624,7 +624,7 @@ main (void)
# In some versions of Autoconf, AT_CHECK invokes AS_ESCAPE before
# expanding macros, so it corrupts some special characters in the
# macros. To avoid this, expand now and pass it the result with proper
-# string quotation. Assume args 7 thru 12 expand to properly quoted
+# string quotation. Assume args 7 through 12 expand to properly quoted
# strings.
m4_if(m4_index(m4_quote($3), [no-xml]), -1,
--
1.7.11.rc0.100.g5498c5f
- [PATCH] fix comment typos,
Jim Meyering <=