Syntax Updating Rules
When modifying the jseopt.h file manually, avoid placing text comments in front the #define flag statement on the same line, in order to have the Selib Assistant function as expected. For example, the following two are valid:
/* The language extension library. */
#define JSE_LANG_ALL
or
/* The language extension library. */
/* #define JSE_LANG_ALL */
However, the following are NOT valid:
/* The language extension library. */ #define JSE_LANG_ALL
or
/* The language extension library. */ /* #define JSE_LANG_ALL */
Basic Instructions for Working with a Jseopt.h File