repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: b61e6e89021b057f76601e64817ab83284bf574e: path_to: revision_to:
commit b61e6e89021b057f76601e64817ab83284bf574e Author: Marc LehmannDate: Sat Dec 2 16:57:16 2006 +0000 *** empty log message *** diff --git a/Changes b/Changes
--- a/Changes +++ b/Changes @@ -37,6 +37,10 @@ TODO: 9:55not 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
--- 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))
-----END OF PAGE-----