On Wed, 6 Oct 2021 04:30:12 GMT, Ioi Lam <ik...@openjdk.org> wrote: > It's hard to tell what's the difference between these two RANGEBASE > definitions. How about doing it like this to make the code more readable? > > ``` > #define RANGEBASE_ASCII "....." > #define RANGEBASE_NON_ASCII "....." > #ifdef WINDOWS > #define RANGEBASE RANGEBASE_ASCII > #else > #define RANGEBASE RANGEBASE_ASCII RANGEBASE_NON_ASCII > #endif > ```
Good suggestion! Updated. Thanks. ------------- PR: https://git.openjdk.java.net/jdk/pull/5704