mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-13 22:33:03 +00:00
* src/getargs.c, src/getarg.h (skeleton)): Constify.
* src/lex.c (literalchar): Avoid name clashes on `buf'. * src/getargs.c: Include complain.h. * src/files.c, src/files.h (skeleton_find): Avoid name clashes. * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
This commit is contained in:
@@ -312,7 +312,6 @@ copy_at (FILE *fin, struct obstack *oout, int stack_offset)
|
||||
else if (isdigit (c) || c == '-')
|
||||
{
|
||||
int n;
|
||||
char buf[4096];
|
||||
|
||||
ungetc (c, fin);
|
||||
n = read_signed_integer (fin);
|
||||
@@ -344,7 +343,7 @@ copy_dollar (FILE *fin, struct obstack *oout,
|
||||
symbol_list *rule, int stack_offset)
|
||||
{
|
||||
int c = getc (fin);
|
||||
char *type_name = NULL;
|
||||
const char *type_name = NULL;
|
||||
|
||||
/* Get the type name if explicit. */
|
||||
if (c == '<')
|
||||
|
||||
Reference in New Issue
Block a user