summaryrefslogtreecommitdiffstats
path: root/lexer
diff options
context:
space:
mode:
authorDave Davenport <qball@blame.services>2021-08-14 13:58:21 +0200
committerDave Davenport <qball@blame.services>2021-08-14 13:58:21 +0200
commit9f777a7a7ba251bc8d8c99b7a26d65601c5eb8b5 (patch)
tree4fb7d6b389e59fcbf9ca7888005a88e873d5317a /lexer
parent0352e99dea62c0a3fc226fb9ea562e2912b410f8 (diff)
[Themes] Fix inheritance with state set.
Update theme.c and included themes. This should allow you to set `element-text { text-color: inherit; background-color: inherit;}` to fix old themes.
Diffstat (limited to 'lexer')
-rw-r--r--lexer/theme-lexer.l2
1 files changed, 0 insertions, 2 deletions
diff --git a/lexer/theme-lexer.l b/lexer/theme-lexer.l
index 8f09646e..3f3dab8a 100644
--- a/lexer/theme-lexer.l
+++ b/lexer/theme-lexer.l
@@ -767,12 +767,10 @@ if ( queue == NULL ) {
<PROPERTIES,PROPERTIES_ENV,PROPERTIES_VAR_DEFAULT,PROPERTIES_LIST>. {
yytext[yyleng-1] = '\0';
- fprintf(stderr,"prop found: |%s|\n", yytext);
return T_ERROR_PROPERTY;
}
<NAMESTR>. {
yytext[yyleng-1] = '\0';
- fprintf(stderr,"namestr found: |%s|\n", yytext);
return T_ERROR_NAMESTRING;
}
%%