static GData *config_def = NULL;
/* provided by cparse.l */
-void cparse_go(FILE *);
+void cparse_go(char *filename, FILE *);
void config_startup()
/* load the system wide rc file first */
path = g_build_filename(RCDIR, "rc3", NULL);
if ((file = fopen(path, "r")) != NULL) {
- cparse_go(file);
+ cparse_go(path, file);
fclose(file);
}
g_free(path);
/* then load the user one which can override it */
path = g_build_filename(g_get_home_dir(), ".openbox", "rc3", NULL);
if ((file = fopen(path, "r")) != NULL) {
- cparse_go(file);
+ cparse_go(path, file);
fclose(file);
}
g_free(path);
#include <glib.h>
#include "config.h"
+static char *yyfilename;
static int yylineno = 1;
static gboolean haserror = FALSE;
static ConfigEntry entry = { NULL, -1 };
{
if (!haserror && entry.name != NULL && (signed)entry.type >= 0) {
if (!config_set(entry.name, entry.type, entry.value))
- g_warning("Invalid option in config file: '%s'\n", entry.name);
+ g_warning("Invalid option in '%s': '%s'\n",
+ yyfilename, entry.name);
} else {
- printf("Parser error in config file on line %d\n", yylineno);
+ printf("Parser error in '%s' on line %d\n", yyfilename, yylineno);
}
g_free(entry.name);
entry.name = NULL;
return 1;
}
-void cparse_go(FILE *file)
+void cparse_go(char *filename, FILE *file)
{
+ yyfilename = filename;
yyin = file;
yylex();
}