repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: fe539e1ee890ca76d10450ed69d9c5c0508904d5: path_to: revision_to:
commit fe539e1ee890ca76d10450ed69d9c5c0508904d5 Author: Marc LehmannDate: Tue Sep 2 16:28:34 2014 +0000 *** empty log message *** diff --git a/Changes b/Changes
--- a/Changes
+++ b/Changes
@@ -35,6 +35,10 @@ TODO IMPL: recalc bg always on bg colour change
TODO: document typical actions in rxvt.1.pod keysyms
TODO: document meta comments and on_action hook
+
+TODO: mikachu says the keymap changed (S-F1 no longer 23$ but 11$)
+TODO: home/end also changed from 1/4 to 7/8 i think
+TODO: http://mika.l3ib.org/tmp/b3c68e35f91e6b5b9b4481b58372a5ad.txt is my full diff (i don't index ctrl-shift apparently)
TODO: perl one-liner
- Add DECSCUSR xterm extension to set the cursor to a vertical bar.
@@ -57,6 +61,8 @@ TODO: perl one-liner
- upgrade to GPLv3 (see COPYING).
- Fix height and position of the stippled area in next scrollbar (patch
by Thomas Otto).
+ - fix off-by-one bug causing the iso14755 window not to jump out of the
+ way properly.
9.20 Sat Apr 26 16:22:27 CEST 2014
- (libptytty) fix bug that prevented urxvtd from writing utmp
diff --git a/src/command.C b/src/command.C
--- a/src/command.C
+++ b/src/command.C
@@ -212,7 +212,7 @@ rxvt_term::iso14755_51 (unicode_t ch, rend_t r, int x, int y, int y2)
if (y >= 0)
{
- y = (y >= nrow - len - 4 && x < width + 2) ? 0 : -1;
+ y = (y >= nrow - len - 5 && x < width + 2) ? 0 : -1;
x = 0;
}
-----END OF PAGE-----