From efab0f51d5b1acdc05ee0f79c566659b8ef10dcc Mon Sep 17 00:00:00 2001 From: root Date: Sat, 2 Dec 2006 16:57:16 +0000 Subject: [PATCH] *** empty log message *** --- Changes | 4 ++++ src/rxvt.h | 10 +++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 8fd49d92..97af1eca 100644 --- a/Changes +++ b/Changes @@ -37,6 +37,10 @@ TODO: 9:55 not much to document, it needs TODO: 9:55 URxvt.keysym.M-c: perl:clipboard:copy TODO: 9:55 URxvt.keysym.M-v: perl:clipboard:paste TODO: http://triplefusion.net/system/macosx-clipboard +8. + - secondaryScroll is now enable by default (as per the manpage), + reported by exg. + 8.0 Thu Nov 2 18:35:19 CET 2006 - combining characters cleared the area instead of creating an overlay, thus losing the ability to draw combining characters properly in most diff --git a/src/rxvt.h b/src/rxvt.h index bb5e26b3..1b5b5989 100644 --- a/src/rxvt.h +++ b/src/rxvt.h @@ -702,9 +702,13 @@ enum { #define Height2Pixel(n) ((int32_t)(n) * (int32_t)fheight) #define OPTION(opt) (options & (opt)) -#define DEFAULT_OPTIONS (Opt_scrollBar | Opt_scrollTtyOutput \ - | Opt_jumpScroll | Opt_secondaryScreen \ - | Opt_pastableTabs | Opt_intensityStyles) +#define DEFAULT_OPTIONS (Opt_scrollBar \ + | Opt_scrollTtyOutput \ + | Opt_jumpScroll \ + | Opt_secondaryScreen \ + | Opt_secondaryScroll \ + | Opt_pastableTabs \ + | Opt_intensityStyles) // for m >= -n, ensure remainder lies between 0..n-1 #define MOD(m,n) (((m) + (n)) % (n)) -- 2.34.1