skip comments and empty lines
This commit is contained in:
parent
e7d225b84a
commit
1593473d6e
1 changed files with 7 additions and 3 deletions
|
@ -148,9 +148,13 @@ void plugin_loadall()
|
|||
/* load the plugins in the rc file */
|
||||
while (g_io_channel_read_line(io, &name, NULL, NULL, &err) ==
|
||||
G_IO_STATUS_NORMAL) {
|
||||
g_strstrip(name);
|
||||
plugin_open(name);
|
||||
g_free(name);
|
||||
int i = 0;
|
||||
while (name[++i-1] == ' ' || name[i-1] == '\t');
|
||||
if (name[i] != '\0' && name[i] != '#') {
|
||||
g_strstrip(name);
|
||||
plugin_open(name);
|
||||
g_free(name);
|
||||
}
|
||||
}
|
||||
g_io_channel_unref(io);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue