CVSROOT: /sources/m4
Module name: m4
Branch: branch-1_4
Changes by: Eric Blake <ericb> 06/07/30 23:46:51
Index: src/input.c
===================================================================
RCS file: /sources/m4/m4/src/Attic/input.c,v
retrieving revision 1.1.1.1.2.12
retrieving revision 1.1.1.1.2.13
diff -u -b -r1.1.1.1.2.12 -r1.1.1.1.2.13
--- src/input.c 28 Jul 2006 20:39:37 -0000 1.1.1.1.2.12
+++ src/input.c 30 Jul 2006 23:46:51 -0000 1.1.1.1.2.13
@@ -348,12 +348,12 @@
pop_wrapup (void)
{
obstack_free (current_input, NULL);
- xfree (current_input);
+ free (current_input);
if (wsp == NULL)
{
obstack_free (wrapup_stack, NULL);
- xfree (wrapup_stack);
+ free (wrapup_stack);
return FALSE;
}
@@ -619,8 +619,8 @@
void
set_quotes (const char *lq, const char *rq)
{
- xfree (lquote.string);
- xfree (rquote.string);
+ free (lquote.string);
+ free (rquote.string);
lquote.string = xstrdup (lq ? lq : DEF_LQUOTE);
lquote.length = strlen (lquote.string);
@@ -631,8 +631,8 @@
void
set_comment (const char *bc, const char *ec)
{
- xfree (bcomm.string);
- xfree (ecomm.string);
+ free (bcomm.string);
+ free (ecomm.string);
bcomm.string = xstrdup (bc ? bc : DEF_BCOMM);
bcomm.length = strlen (bcomm.string);