[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/7] typo: succesful -> successful
From: |
Akim Demaille |
Subject: |
[PATCH 1/7] typo: succesful -> successful |
Date: |
Fri, 28 Feb 2020 06:32:13 +0100 |
From: Adrian Vogelsgesang <address@hidden>
* data/skeletons/lalr1.cc: here
* etc/bench.pl.in: here
* src/location.c: here
* tests/calc.at: and here
---
data/skeletons/lalr1.cc | 2 +-
etc/bench.pl.in | 2 +-
src/location.c | 2 +-
tests/calc.at | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/skeletons/lalr1.cc b/data/skeletons/lalr1.cc
index 8570f845..dd5a1a81 100644
--- a/data/skeletons/lalr1.cc
+++ b/data/skeletons/lalr1.cc
@@ -1358,7 +1358,7 @@ b4_dollar_popdef])[]dnl
yyarg[yycount++] = yytname_[yytoken];]b4_lac_if([[
#if ]b4_api_PREFIX[DEBUG
- // Execute LAC once. We don't care if it is succesful, we
+ // Execute LAC once. We don't care if it is successful, we
// only do it for the sake of debugging output.
if (!yy_lac_established_)
yy_lac_check_ (yytoken);
diff --git a/etc/bench.pl.in b/etc/bench.pl.in
index 05507dc6..153ae55d 100755
--- a/etc/bench.pl.in
+++ b/etc/bench.pl.in
@@ -100,7 +100,7 @@ Artificial grammar with very long rules.
=item B<-h>, B<--help>
-Display this message and exit succesfully. The more verbose, the more
+Display this message and exit successfully. The more verbose, the more
details.
=item B<-i>, B<--iterations>=I<integer>
diff --git a/src/location.c b/src/location.c
index 5c567591..4bf3b123 100644
--- a/src/location.c
+++ b/src/location.c
@@ -317,7 +317,7 @@ caret_getc_internal (mbchar_t *res)
/* Move CARET_INFO (which has a valid FILE) to the line number LINE.
Compute and cache that line's length in CARET_INFO.LINE_LEN.
- Return whether succesful.*/
+ Return whether successful.*/
static bool
caret_set_line (int line)
{
diff --git a/tests/calc.at b/tests/calc.at
index 0487dc1f..f5c8f797 100644
--- a/tests/calc.at
+++ b/tests/calc.at
@@ -996,7 +996,7 @@ _AT_CHECK_CALC_ERROR([$1], [0], [(- *) + (1 2) = 1],
]AT_JAVA_IF([1.1-1.18], [1.1-17])[: calc: error: 2222 != 1]])
# Check that yyerrok works properly: second error is not reported,
-# third and fourth are. Parse status is succesful.
+# third and fourth are. Parse status is successful.
_AT_CHECK_CALC_ERROR([$1], [0], [(* *) + (*) + (*)],
[[final: 3333 0 3]],
[113],
--
2.25.1
- [PATCH 0/7] C++ support for custom error messages, Akim Demaille, 2020/02/28
- [PATCH 1/7] typo: succesful -> successful,
Akim Demaille <=
- [PATCH 2/7] skeletons: prefer b4_parse_error_{case, bmatch} over manual solution, Akim Demaille, 2020/02/28
- [PATCH 3/7] c++: add support for parse.error=detailed, Akim Demaille, 2020/02/28
- [PATCH 4/7] c++: add parser::context for syntax error handling, Akim Demaille, 2020/02/28
- [PATCH 5/7] c++: add support for parse.error=custom, Akim Demaille, 2020/02/28
- [PATCH 6/7] c++: minor fixes, Akim Demaille, 2020/02/28
- [PATCH 7/7] c++: don't copy the lookahead, Akim Demaille, 2020/02/28