* src/output.c (output_parser): Fix. Store single '%' characters in

the output obstack instead of throwing them away.
This commit is contained in:
Robert Anisko
2001-08-27 14:34:02 +00:00
parent 6fc7423473
commit b0cfa28a12
2 changed files with 7 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2001-08-27 Robert Anisko <robert.anisko@epita.fr>
* src/output.c (output_parser): Fix. Store single '%' characters in
the output obstack instead of throwing them away.
2001-08-27 Akim Demaille <akim@epita.fr>
* Makefile.am (AUTOMAKE_OPTIONS): 1.5.

View File

@@ -1009,6 +1009,8 @@ output_parser (void)
obstack_sgrow (&table_obstack, macro_key);
}
}
else
obstack_1grow (&table_obstack, '%');
}
/* End. */