From: root Date: Thu, 17 Feb 2005 12:06:21 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=1f0e66996a0b157775c6cae323491a600acf1086;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index 7e18f01a..dd6b4ef9 100644 --- a/Changes +++ b/Changes @@ -12,18 +12,20 @@ WISH: OnTheSpot editing, or maybe switch to miiiiiiif WISH: tabbed windows (hey, just use screen...) WISH: just for fun, do shade and tint with XRender. - - remove shared library (or any library) support - it is - of no use currently (and -embed is a better way to embed - rxvt-unicode). - - get rid of the intpro files. - SYNCCVS. backported bugfixes done to rxvt (sourceforge bugs #1028739, #1028732), except for pts/%s fix as it seems to collide with freebsd, - and sourceforge bug #954654, which is unreproducible. + and sourceforge bug #954654, which is not neccessary. - change terminfo file to not clobber G1 when using line-drawing characters, as this seems to mess with EUC-JP (it will clobber G0, but G0 practically needs to be US-ASCII all the time). + - toggle default application keypad/cursor mode to help + some apps who fail to set the correct mode. + - remove shared library (or any library) support - it is + of no use currently (and -embed is a better way to embed + rxvt-unicode). + - get rid of the intpro files. 5.1 Tue Feb 15 17:13:27 CET 2005 - fix a bug when parsing fontnames and another one diff --git a/README.FAQ b/README.FAQ index cc34df43..2fba3a0f 100644 --- a/README.FAQ +++ b/README.FAQ @@ -67,11 +67,12 @@ FREQUENTLY ASKED QUESTIONS :co#80:it#8:li#24:lm#0:\ :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\ :K1=\EOw:K2=\EOu:K3=\EOy:K4=\EOq:K5=\EOs:LE=\E[%dD:\ - :RI=\E[%dC:SF=\E[%dS:SR=\E[%dT:UP=\E[%dA:ae=^O:al=\E[L:\ - :as=^N:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:\ - :cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:\ - :ec=\E[%dX:ei=\E[4l:ho=\E[H:i1=\E[?47l\E=\E[?1l:ic=\E[@:\ - :im=\E[4h:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l:\ + :RI=\E[%dC:SF=\E[%dS:SR=\E[%dT:UP=\E[%dA:ae=\E(B:al=\E[L:\ + :as=\E(0:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:\ + :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:\ + :dl=\E[M:do=^J:ec=\E[%dX:ei=\E[4l:ho=\E[H:\ + :i1=\E[?47l\E=\E[?1l:ic=\E[@:im=\E[4h:\ + :is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l:\ :k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~:k5=\E[15~:\ :k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kD=\E[3~:\ :kI=\E[2~:kN=\E[6~:kP=\E[5~:kb=\177:kd=\EOB:ke=\E[?1l\E>:\ diff --git a/src/command.C b/src/command.C index 8929e62c..9c699903 100644 --- a/src/command.C +++ b/src/command.C @@ -278,9 +278,9 @@ rxvt_term::lookup_key (XKeyEvent &ev) * * Always permit `shift' to override the current setting */ - shft = (ev.state & ShiftMask); - ctrl = (ev.state & ControlMask); - meta = (ev.state & ModMetaMask); + shft = ev.state & ShiftMask; + ctrl = ev.state & ControlMask; + meta = ev.state & ModMetaMask; if (numlock_state || (ev.state & ModNumLockMask)) { diff --git a/src/rxvt.h b/src/rxvt.h index f744b1d1..b93ed342 100644 --- a/src/rxvt.h +++ b/src/rxvt.h @@ -701,9 +701,9 @@ enum { priv_modes &= ~(bit) #ifdef ALLOW_132_MODE -# define PrivMode_Default (PrivMode_Autowrap|PrivMode_aplKP|PrivMode_ShiftKeys|PrivMode_VisibleCursor|PrivMode_132OK) +# define PrivMode_Default (PrivMode_Autowrap|PrivMode_ShiftKeys|PrivMode_VisibleCursor|PrivMode_132OK) #else -# define PrivMode_Default (PrivMode_Autowrap|PrivMode_aplKP|PrivMode_ShiftKeys|PrivMode_VisibleCursor) +# define PrivMode_Default (PrivMode_Autowrap|PrivMode_ShiftKeys|PrivMode_VisibleCursor) #endif // do not change these constants lightly, there are many interdependencies