From: ayin Date: Fri, 16 Feb 2007 21:46:05 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=bd7aa18e5b11d60be24d6a366d0deaa669fbbd11;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index 255f65bd..a1c557c9 100644 --- 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!!! diff --git a/doc/rxvt.7.pod b/doc/rxvt.7.pod index 304f6ebb..1958c920 100644 --- a/doc/rxvt.7.pod +++ b/doc/rxvt.7.pod @@ -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 diff --git a/src/command.C b/src/command.C index b5e0be9f..97ff9693 100644 --- a/src/command.C +++ b/src/command.C @@ -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 diff --git a/src/init.C b/src/init.C index e3f57dff..2ae675a4 100644 --- a/src/init.C +++ b/src/init.C @@ -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