1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-21 13:28:05 +01:00

clean the fixes.

This commit is contained in:
id
1999-09-24 12:20:54 +00:00
parent 6f28a38d4d
commit c7bc663b55
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,8 @@
Changes since version 0.61.0:
.............................
- fixed OPEN_MENU
- fixed crash when moving a shaded window with keyboard
- fixed problem with window shortcut assignment from the menu
- fixed problem with fonts in WINGs (Masahide -mac- NODA
<mac@flab.fujitsu.co.jp>)

View File

@@ -623,12 +623,10 @@ separateCommand(char *line, char ***file, char **command)
count = WMGetBagItemCount(bag);
if (count>0) {
int j;
*file = wmalloc(sizeof(char*)*(count+1));
i = count;
(*file)[count] = NULL;
for (j = 0; j < count; j++) {
(*file)[j] = WMGetFromBag(bag, j);
for (i = 0; i < count; i++) {
(*file)[i] = WMGetFromBag(bag, i);
}
}
WMFreeBag(bag);