mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-22 18:53:04 +00:00
* tests/actions.at (Mid-rule actions): Output on a single line
instead of several.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2001-12-29 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
|
* tests/actions.at (Mid-rule actions): Output on a single line
|
||||||
|
instead of several.
|
||||||
|
|
||||||
|
|
||||||
2001-12-29 Akim Demaille <akim@epita.fr>
|
2001-12-29 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
* doc/bison.texinfo: Formatting changes.
|
* doc/bison.texinfo: Formatting changes.
|
||||||
|
|||||||
@@ -37,16 +37,17 @@ static void yyerror (const char *msg);
|
|||||||
static int yylex (void);
|
static int yylex (void);
|
||||||
%}
|
%}
|
||||||
%%
|
%%
|
||||||
exp: { printf ("0\n"); }
|
exp: { putchar ('0'); }
|
||||||
'1' { printf ("1\n"); }
|
'1' { putchar ('1'); }
|
||||||
'2' { printf ("2\n"); }
|
'2' { putchar ('2'); }
|
||||||
'3' { printf ("3\n"); }
|
'3' { putchar ('3'); }
|
||||||
'4' { printf ("4\n"); }
|
'4' { putchar ('4'); }
|
||||||
'5' { printf ("5\n"); }
|
'5' { putchar ('5'); }
|
||||||
'6' { printf ("6\n"); }
|
'6' { putchar ('6'); }
|
||||||
'7' { printf ("7\n"); }
|
'7' { putchar ('7'); }
|
||||||
'8' { printf ("8\n"); }
|
'8' { putchar ('8'); }
|
||||||
'9' { printf ("9\n"); }
|
'9' { putchar ('9'); }
|
||||||
|
{ putchar ('\n'); }
|
||||||
;
|
;
|
||||||
%%
|
%%
|
||||||
static int
|
static int
|
||||||
@@ -72,16 +73,7 @@ main (void)
|
|||||||
AT_CHECK([bison input.y -d -v -o input.c])
|
AT_CHECK([bison input.y -d -v -o input.c])
|
||||||
AT_CHECK([$CC $CFLAGS $CPPFLAGS input.c -o input], 0, [], [ignore])
|
AT_CHECK([$CC $CFLAGS $CPPFLAGS input.c -o input], 0, [], [ignore])
|
||||||
AT_CHECK([input], 0,
|
AT_CHECK([input], 0,
|
||||||
[[0
|
[[0123456789
|
||||||
1
|
|
||||||
2
|
|
||||||
3
|
|
||||||
4
|
|
||||||
5
|
|
||||||
6
|
|
||||||
7
|
|
||||||
8
|
|
||||||
9
|
|
||||||
]])
|
]])
|
||||||
|
|
||||||
AT_CLEANUP
|
AT_CLEANUP
|
||||||
|
|||||||
Reference in New Issue
Block a user