1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-20 04:48:06 +01:00

try to fix open menus, hope it worx.

This commit is contained in:
id
1999-09-24 08:12:18 +00:00
parent a0d037e6fc
commit 6f28a38d4d
2 changed files with 11 additions and 5 deletions

View File

@@ -155,9 +155,15 @@ MakeCPPArgs(char *path)
* search path */
if (path) {
tmp = wstrdup(path);
buf = strchr(tmp+1, ' ');
if (buf) {
*buf = 0;
}
buf = strrchr(tmp, '/');
if (buf) *buf = 0; /* trunc filename */
if (buf) {
*buf = 0; /* trunc filename */
putdef(line, " -I", tmp);
}
free(tmp);
}

View File

@@ -628,7 +628,7 @@ separateCommand(char *line, char ***file, char **command)
i = count;
(*file)[count] = NULL;
for (j = 0; j < count; j++) {
(*file)[--i] = WMGetFromBag(bag, j);
(*file)[j] = WMGetFromBag(bag, j);
}
}
WMFreeBag(bag);