Lee Ockert

Results 4 comments of Lee Ockert

In Big Sur and Monterey, standard include and library directories are not automatically divined by `/Library/Developer/CommandLineTools/usr/bin/cc` and they are instead specified by the shim at `/usr/bin/cc`. I recommend just using...

Please merge, this fixes a large number of failing tests. ``` static int matchcharclass(char c, const char* str) { do { if (matchrange(c, str)) { return 1; } else if...

A lot of places in the code just assume that the tab is 8 spaces. I've had it partially working by `#define`ing `TABSTOP` at compile time and using that instead,...

Hi! I've run into this recently, and it's very frustrating. Tab focus works fine for wxChoice, but not for wxComboBox with wxCB_READONLY. This is definitely a bug. I know it...