diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-22 22:02:14 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-22 22:02:14 +0000 |
| commit | 799fe5a8bcdc799d7621e2e97659f564b95dda05 (patch) | |
| tree | d515c777623304731a4164e2313a8ce9222b8658 /openbox/config.c | |
| parent | a26cd30bf068c2cf7edbfdb5a20548d04bfb3179 (diff) | |
give the filename to the parser for errors
Diffstat (limited to 'openbox/config.c')
| -rw-r--r-- | openbox/config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/config.c b/openbox/config.c index e2a14e44..b66ad5e7 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -17,7 +17,7 @@ static GData *config = NULL; static GData *config_def = NULL; /* provided by cparse.l */ -void cparse_go(FILE *); +void cparse_go(char *filename, FILE *); void config_startup() @@ -53,7 +53,7 @@ void config_parse() /* 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); @@ -61,7 +61,7 @@ void config_parse() /* 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); |
