diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-09-05 06:54:32 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-09-05 06:54:32 +0000 |
commit | 8b2fc1193ceb56f10f28aade4e04f20a1eaf8397 (patch) | |
tree | a6f8cce66ca378aa22baab845ce802959757e5a1 /www/links/files/patch-ab | |
parent | Update to 0.3.2. (diff) |
Fix:
1.Problems with keys PgUp PgDn Home End
2.Terminal options -> KOI8-R frames not read from ~/.links/links.cfg
PR: 20947
Submitted by: Belousov Oleg <strijar@urai.ru>
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=32299
Diffstat (limited to 'www/links/files/patch-ab')
-rw-r--r-- | www/links/files/patch-ab | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/www/links/files/patch-ab b/www/links/files/patch-ab new file mode 100644 index 000000000000..9e15593d726f --- /dev/null +++ b/www/links/files/patch-ab @@ -0,0 +1,17 @@ +--- kbd.c.orig Tue Jun 27 19:19:48 2000 ++++ kbd.c Tue Sep 5 09:36:31 2000 +@@ -479,10 +479,10 @@ + case 'B': ev.x = KBD_DOWN; break; + case 'C': ev.x = KBD_RIGHT; break; + case 'D': ev.x = KBD_LEFT; break; +- case 'F': +- case 'e': ev.x = KBD_END; break; +- case 'H': +- case 0: ev.x = KBD_HOME; break; ++ case 'I': ev.x = KBD_PAGE_UP; break; ++ case 'G': ev.x = KBD_PAGE_DOWN; break; ++ case 'F': ev.x = KBD_END; break; ++ case 'H': ev.x = KBD_HOME; break; + case 'z': switch (v) { + case 247: ev.x = KBD_INS; break; + case 214: ev.x = KBD_HOME; break; |