summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--glcpp-lex.l1
-rw-r--r--glcpp-parse.y10
-rw-r--r--tests/000-content-with-spaces.c2
3 files changed, 7 insertions, 6 deletions
diff --git a/glcpp-lex.l b/glcpp-lex.l
index f6d0c8b7d6..516f42dee3 100644
--- a/glcpp-lex.l
+++ b/glcpp-lex.l
@@ -119,7 +119,6 @@ HEXADECIMAL_INTEGER 0[xX][0-9a-fA-F]+[uU]?
{HSPACE}+ {
if (yyextra->space_tokens) {
- yylval.str = xtalloc_strdup (yyextra, yytext);
return SPACE;
}
}
diff --git a/glcpp-parse.y b/glcpp-parse.y
index a1981995fd..0460f71f74 100644
--- a/glcpp-parse.y
+++ b/glcpp-parse.y
@@ -132,8 +132,8 @@ glcpp_parser_lex (glcpp_parser_t *parser);
%token HASH HASH_DEFINE_FUNC HASH_DEFINE_OBJ HASH_UNDEF IDENTIFIER NEWLINE OTHER SPACE
%token LEFT_SHIFT RIGHT_SHIFT LESS_OR_EQUAL GREATER_OR_EQUAL EQUAL NOT_EQUAL AND OR PASTE
-%type <ival> punctuator
-%type <str> IDENTIFIER OTHER SPACE
+%type <ival> punctuator SPACE
+%type <str> IDENTIFIER OTHER
%type <string_list> identifier_list
%type <token> preprocessing_token
%type <token_list> pp_tokens replacement_list text_line
@@ -235,7 +235,7 @@ preprocessing_token:
$$ = _token_create_str (parser, OTHER, $1);
}
| SPACE {
- $$ = _token_create_str (parser, SPACE, $1);
+ $$ = _token_create_ival (parser, SPACE, SPACE);
}
;
@@ -495,9 +495,11 @@ _token_print (token_t *token)
switch (token->type) {
case IDENTIFIER:
case OTHER:
- case SPACE:
printf ("%s", token->value.str);
break;
+ case SPACE:
+ printf (" ");
+ break;
case LEFT_SHIFT:
printf ("<<");
break;
diff --git a/tests/000-content-with-spaces.c b/tests/000-content-with-spaces.c
index a7fc918c90..696cb3a74f 100644
--- a/tests/000-content-with-spaces.c
+++ b/tests/000-content-with-spaces.c
@@ -1 +1 @@
-this is four tokens
+this is four tokens