*** empty log message ***
authorroot <root>
Thu, 17 Feb 2005 12:06:21 +0000 (12:06 +0000)
committerroot <root>
Thu, 17 Feb 2005 12:06:21 +0000 (12:06 +0000)
Changes
README.FAQ
src/command.C
src/rxvt.h

diff --git a/Changes b/Changes
index 7e18f01a92843526116c52222231bc4dc3629354..dd6b4ef9c4d1337186505689c640041d4daf4d4f 100644 (file)
--- 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
index cc34df43fab4a751b59c80948c5138c652352bad..2fba3a0f3b08c66e2db486232350a4fafa7d30ac 100644 (file)
@@ -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>:\
index 8929e62cef419e52f4bfbab01a6e06c231b2b91d..9c699903099379f314014f59abde6fdf2d8615c4 100644 (file)
@@ -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))
     {
index f744b1d13aec00f6e15cc0b119c707c8b31257b1..b93ed3427c444595c0996a972f714136fe6bcc0f 100644 (file)
@@ -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