summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-04-04 08:56:19 +0200
committerDave Davenport <qball@gmpclient.org>2017-04-04 08:56:19 +0200
commitabaae5f403e480b810bf5d6b1c231e9946e4ef64 (patch)
treea74ee9dff0e81f0e11c82e1e6d731396830e5dae /source
parentb8dff89b87860b121fe696e006990a2a773c6108 (diff)
Add (initial) check for theme parser.
Diffstat (limited to 'source')
-rw-r--r--source/theme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/theme.c b/source/theme.c
index dd96d471..9914f5c0 100644
--- a/source/theme.c
+++ b/source/theme.c
@@ -279,8 +279,8 @@ void yyerror ( YYLTYPE *yylloc, const char *what, const char* s )
else {
g_string_append_printf ( str, "\tLocation: line %d column %d to line %d column %d\n", yylloc->first_line, yylloc->first_column, yylloc->last_line, yylloc->last_column );
}
- rofi_add_error_message ( str );
g_log ( "Parser", G_LOG_LEVEL_DEBUG, "Failed to parse theme:\n%s", str->str );
+ rofi_add_error_message ( str );
}
static gboolean rofi_theme_steal_property_int ( gpointer key, gpointer value, gpointer user_data )