Displaying 2 results from an estimated 2 matches for "compse".
Did you mean:
compose
2005 Mar 24
1
Problems with menu.c32, and some feature request for menu.c32
I have found two bugs in the menu.c32 utility, part of the syslinux-3.08-pre5 build, and have a couple of requests.
Problem 1:
If you use the ^ symbol to define a number as a hotkey, ex. MENU LABEL ^1 Option #1 , the menu will not print the number highlighted. It will use it as a hot key, it just will not highlight it. It does highlight the hotkey if specify a letter, A-Z.
Problem 2:
When
2005 Mar 28
0
Problems with menu.c32,and some feature request for menu.c32
...ed char)*p == entry->hotkey ) { */
fputs(hotattrib, stdout);
putchar(*p++);
fputs(attrib, stdout);
width--;
/* } */
} else {
putchar(*p++);
width--;
}
} else {
putchar(' ');
width--;
}
}
}
As you can see I have commented out two lines that compse an If statement. This was preventing numbers from being displayed as highlighted. With this mod, if you use a number as a hot key it is properly highlighted on the screen.
Regarding the response from Problem #2:
I realize that the menu.c32 is new and most likely a beta program, however I wanted...