*** empty log message ***
authorayin <ayin>
Fri, 16 Feb 2007 21:46:05 +0000 (21:46 +0000)
committerayin <ayin>
Fri, 16 Feb 2007 21:46:05 +0000 (21:46 +0000)
Changes
doc/rxvt.7.pod
src/command.C
src/init.C

diff --git a/Changes b/Changes
index 255f65bdbe4d3bde158bffb49bd2d464dc60251f..a1c557c9f1abaa89b88933c81444f3fc0c23b094 100644 (file)
--- a/Changes
+++ b/Changes
@@ -47,6 +47,10 @@ DUMB: support tex fonts
         - update iom.C, make it call ptytty::sanitise_stdfd on init.
         - when !XFT, change rounding of colours to use a less correct formula to
           meet user expectancies (#aaa becomes #a000a000a000 not #9f9f9f9f9f9f).
+        - change the starting offset of the pixmap set with backgroundPixmap
+          from (50,50) to (0,0).
+        - fix a typo in button_release, now meta-button2 request the value of
+          the Clipboard selection as it should (patch by Serge Koksharov).
 
 8.1  Thu Dec  7 22:27:25 CET 2006
         - ケリスマスプレゼント - zomg!!1, it's too early!!!
index 304f6ebb699421326fe21b6094cb00bd3900b52d..1958c9204c5716ca13875f41774f7541a5d88e1b 100644 (file)
@@ -2248,7 +2248,7 @@ memory usage unless you use a font requiring one of these encodings.
 
        all     all available codeset groups
        zh      common chinese encodings
-       zh_ext  rarely used but very big chinese encodigs
+       zh_ext  rarely used but very big chinese encodings
        jp      common japanese encodings
        jp_ext  rarely used but big japanese encodings
        kr      korean encodings
@@ -2415,10 +2415,10 @@ It also enables some non-essential features otherwise disabled, such as:
 
   some round-trip time optimisations
   nearest color allocation on pseudocolor screens
-  UTF8_STRING supporr for selection
+  UTF8_STRING support for selection
   sgr modes 90..97 and 100..107
   backindex and forwardindex escape sequences
-  view change/zero scorllback esacpe sequences
+  view change/zero scrollback escape sequences
   locale switching escape sequence
   window op and some xterm/OSC escape sequences
   rectangular selections
index b5e0be9fe93fef4dbf10e5d96357bfedfb3f3d44..97ff9693e5860cd26b06ba6f4ae36a5236d20e77 100644 (file)
@@ -2158,7 +2158,7 @@ rxvt_term::button_release (XButtonEvent &ev)
 
           case Button2:
             if (IN_RANGE_EXC (ev.x, 0, width) && IN_RANGE_EXC (ev.y, 0, height)) // inside window?
-             selection_request (ev.time, ev.state & ModMetaMask ? Sel_Primary : Sel_Primary);
+             selection_request (ev.time, ev.state & ModMetaMask ? Sel_Clipboard : Sel_Primary);
             break;
 
 #ifdef MOUSE_WHEEL
index e3f57dff4bb49c32bc23e80e7f535f62202c36ff..2ae675a404cc7c7ef8073861f33eff14e35b2cae 100644 (file)
@@ -208,7 +208,7 @@ rxvt_term::init_vars ()
   oldcursor.row = oldcursor.col = -1;
 #ifdef XPM_BACKGROUND
   /*  bgPixmap.w = bgPixmap.h = 0; */
-  bgPixmap.x = bgPixmap.y = 50;
+  bgPixmap.x = bgPixmap.y = 0;
   bgPixmap.pixmap = None;
 #endif