diff options
author | portix <portix@gmx.net> | 2011-12-28 04:02:25 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2011-12-28 04:02:25 +0100 |
commit | b2383d226fc4625d2415738ba026c4c565967bcd (patch) | |
tree | ad77fff6f7ac5c30f62228deabe839b7846ea99b /src/util.c | |
parent | cbc51f69d6cb743886071980664f73c4d804342a (diff) | |
download | dwb-b2383d226fc4625d2415738ba026c4c565967bcd.zip |
Reintroducing dwb_update_layout, needed for the correct tabnumber if a tab is removed/added.
--HG--
branch : experimental
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -490,7 +490,7 @@ dwb_navigation_new_from_line(const char *text) { Navigation *nv = NULL; if (text == NULL) return NULL; - while (g_ascii_isspace(*text)) + while (isspace((int)*text)) text++; if (*text != '\0') { |