summaryrefslogtreecommitdiff
path: root/src/flex-scanner.h
diff options
context:
space:
mode:
authorAkim Demaille <akim@lrde.epita.fr>2012-05-15 17:15:59 +0200
committerAkim Demaille <akim@lrde.epita.fr>2012-05-21 14:48:52 +0200
commit08f6341c0110fa96fd4f0c31ca3cdad8edbf5258 (patch)
treea5c7cd892965e511942c70eeeae39e86d5206df8 /src/flex-scanner.h
parent86b08b49b3b1b9fc27a3c64d8421a6f30c12d942 (diff)
downloadbison-08f6341c0110fa96fd4f0c31ca3cdad8edbf5258.tar.gz
space changes.
* src/flex-scanner.h: Indent nested cpp directives.
Diffstat (limited to 'src/flex-scanner.h')
-rw-r--r--src/flex-scanner.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/flex-scanner.h b/src/flex-scanner.h
index f27938dc..99798411 100644
--- a/src/flex-scanner.h
+++ b/src/flex-scanner.h
@@ -82,16 +82,16 @@ int FLEX_PREFIX (lex_destroy) (void);
static struct obstack obstack_for_string;
-#define STRING_GROW \
+# define STRING_GROW \
obstack_grow (&obstack_for_string, yytext, yyleng)
-#define STRING_FINISH \
+# define STRING_FINISH \
do { \
obstack_1grow (&obstack_for_string, '\0'); \
last_string = obstack_finish (&obstack_for_string); \
} while (0)
-#define STRING_FREE \
+# define STRING_FREE \
obstack_free (&obstack_for_string, last_string)
#endif