--- rxvt-unicode/src/rxvtlib.h.in 2005/12/21 23:57:12 1.53 +++ rxvt-unicode/src/rxvtlib.h.in 2005/12/31 16:40:28 1.56 @@ -255,17 +255,25 @@ #if ENABLE_FRILLS # define Opt_insecure (1UL<<24) // insecure esc sequences # define Opt_borderLess (1UL<<25) // mem borderless hints +# define Opt_hold (1UL<<26) // hold window open after exit #else # define Opt_insecure 0 # define Opt_borderLess 0 +# define Opt_hold 0 +#endif +#if ENABLE_STYLES +# define Opt_intensityStyles (1UL<<27) // font styles imply intensity +#else +# define Opt_intensityStyles 0 #endif /* place holder used for parsing command-line options */ #define Opt_Reverse (1UL<<30) #define Opt_Boolean (1UL<<31) +#define OPTION(opt) (options && (opt)) #define DEFAULT_OPTIONS (Opt_scrollBar | Opt_scrollTtyOutput \ | Opt_jumpScroll | Opt_secondaryScreen \ - | Opt_pastableTabs) + | Opt_pastableTabs | Opt_intensityStyles) /* ------------------------------------------------------------------------- */