*** empty log message ***
authorroot <root>
Sat, 2 Dec 2006 16:57:16 +0000 (16:57 +0000)
committerroot <root>
Sat, 2 Dec 2006 16:57:16 +0000 (16:57 +0000)
Changes
src/rxvt.h

diff --git a/Changes b/Changes
index 8fd49d929cb01c47a53d7471fe575e351f421026..97af1ecafdf82f3e817b829a0b4b048abba9d4d5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -37,6 +37,10 @@ TODO: 9:55 <Wolf_on_Air> not much to document, it needs
 TODO: 9:55 <Wolf_on_Air> URxvt.keysym.M-c:                       perl:clipboard:copy
 TODO: 9:55 <Wolf_on_Air> 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
index bb5e26b341d9d1370e46d34e0659121de10a0fbd..1b5b59892061eacd207229837ad4a7b25923b601 100644 (file)
@@ -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))