mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
Formatting changes.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2008-11-10 Akim Demaille <demaille@gostai.com>
|
||||||
|
|
||||||
|
Formatting changes.
|
||||||
|
|
||||||
2008-11-10 Akim Demaille <demaille@gostai.com>
|
2008-11-10 Akim Demaille <demaille@gostai.com>
|
||||||
|
|
||||||
Update the variant example.
|
Update the variant example.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* Muscle table manager for Bison,
|
/* Muscle table manager for Bison,
|
||||||
Copyright (C) 2001, 2002, 2003, 2006, 2007 Free Software Foundation, Inc.
|
Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of Bison, the GNU Compiler Compiler.
|
This file is part of Bison, the GNU Compiler Compiler.
|
||||||
|
|
||||||
@@ -51,6 +51,7 @@ do { \
|
|||||||
muscle_insert (Key, obstack_finish (&muscle_obstack)); \
|
muscle_insert (Key, obstack_finish (&muscle_obstack)); \
|
||||||
} while(0)
|
} while(0)
|
||||||
|
|
||||||
|
/* Key -> Value, but don't apply escaping to Value. */
|
||||||
#define MUSCLE_INSERT_STRING_RAW(Key, Value) \
|
#define MUSCLE_INSERT_STRING_RAW(Key, Value) \
|
||||||
do { \
|
do { \
|
||||||
obstack_sgrow (&muscle_obstack, Value); \
|
obstack_sgrow (&muscle_obstack, Value); \
|
||||||
@@ -58,6 +59,7 @@ do { \
|
|||||||
muscle_insert (Key, obstack_finish (&muscle_obstack)); \
|
muscle_insert (Key, obstack_finish (&muscle_obstack)); \
|
||||||
} while(0)
|
} while(0)
|
||||||
|
|
||||||
|
/* Key -> Value, applying M4 escaping to Value. */
|
||||||
#define MUSCLE_INSERT_STRING(Key, Value) \
|
#define MUSCLE_INSERT_STRING(Key, Value) \
|
||||||
do { \
|
do { \
|
||||||
MUSCLE_OBSTACK_SGROW (&muscle_obstack, Value); \
|
MUSCLE_OBSTACK_SGROW (&muscle_obstack, Value); \
|
||||||
|
|||||||
@@ -328,9 +328,9 @@ user_actions_output (FILE *out)
|
|||||||
fputs ("])\n\n", out);
|
fputs ("])\n\n", out);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*--------------------------------------.
|
/*------------------------------------.
|
||||||
| Output the merge functions to OUT. |
|
| Output the merge functions to OUT. |
|
||||||
`--------------------------------------*/
|
`------------------------------------*/
|
||||||
|
|
||||||
static void
|
static void
|
||||||
merger_output (FILE *out)
|
merger_output (FILE *out)
|
||||||
|
|||||||
Reference in New Issue
Block a user