From: root Date: Sun, 10 Dec 2006 15:14:04 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=eeddb383fd52d0b9fcf37f6a200453de2b47759e;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index 74079cdc..44818d78 100644 --- a/Changes +++ b/Changes @@ -23,6 +23,8 @@ DUMB: support tex fonts TODO: fix rounding of colors when !xft (#aaaaaa => #a9a900) (do not use correct, but expected value) - fix make depend in src/, reported by exg. + - fixed typo in urxvt::GET_CUSTOM, causing the result to be wrong. + (patch by Sergey Vlasov). 8.1 Thu Dec 7 22:27:25 CET 2006 - ケリスマスプレゼント - zomg!!1, it's too early!!! diff --git a/src/rxvtperl.xs b/src/rxvtperl.xs index 6051a20f..8d651b43 100644 --- a/src/rxvtperl.xs +++ b/src/rxvtperl.xs @@ -943,7 +943,7 @@ SET_BGCOLOR (int rend, int new_color) int GET_CUSTOM (int rend) CODE: - RETVAL = (rend && RS_customMask) >> RS_customShift; + RETVAL = (rend & RS_customMask) >> RS_customShift; OUTPUT: RETVAL