diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-28 01:29:25 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-28 01:29:25 +0000 |
| commit | 5e3ab28bab78e07553b7b44fe7c7c7b20c9d2fd3 (patch) | |
| tree | c7d3ffa01aabf891d0ef4683bb65f4192b477296 | |
| parent | 1593473d6e27dbfca1a5f6b2c96acc2d902a19b6 (diff) | |
skip better
| -rw-r--r-- | openbox/plugin.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/openbox/plugin.c b/openbox/plugin.c index ca86aca4..c3e21ec4 100644 --- a/openbox/plugin.c +++ b/openbox/plugin.c @@ -148,13 +148,10 @@ 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) { - int i = 0; - while (name[++i-1] == ' ' || name[i-1] == '\t'); - if (name[i] != '\0' && name[i] != '#') { - g_strstrip(name); + g_strstrip(name); + if (name[0] != '\0' && name[0] != '#') plugin_open(name); - g_free(name); - } + g_free(name); } g_io_channel_unref(io); } |
