From: Paul Eggert Date: Sun, 9 Jul 2006 19:44:34 +0000 (+0000) Subject: (STRING_FREE): Don't use FLEX_PREFIX (last_string) X-Git-Tag: v2.3b~336 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/f2e690d8c3bd18e47949f06dd37a877ff2c3dd2c (STRING_FREE): Don't use FLEX_PREFIX (last_string) since last_string is already defined to FLEX_PREFIX (last_string). --- diff --git a/src/flex-scanner.h b/src/flex-scanner.h index c1459055..bf190afd 100644 --- a/src/flex-scanner.h +++ b/src/flex-scanner.h @@ -71,4 +71,4 @@ static struct obstack obstack_for_string; } while (0) #define STRING_FREE \ - obstack_free (&obstack_for_string, FLEX_PREFIX (last_string)) + obstack_free (&obstack_for_string, last_string)