summaryrefslogtreecommitdiff
path: root/www/links
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-09-05 06:54:32 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-09-05 06:54:32 +0000
commit8b2fc1193ceb56f10f28aade4e04f20a1eaf8397 (patch)
treea6f8cce66ca378aa22baab845ce802959757e5a1 /www/links
parentUpdate 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')
-rw-r--r--www/links/files/patch-aa11
-rw-r--r--www/links/files/patch-ab17
2 files changed, 28 insertions, 0 deletions
diff --git a/www/links/files/patch-aa b/www/links/files/patch-aa
new file mode 100644
index 000000000000..7170c081e528
--- /dev/null
+++ b/www/links/files/patch-aa
@@ -0,0 +1,11 @@
+--- default.c.orig Thu Jun 22 10:37:36 2000
++++ default.c Tue Sep 5 09:34:12 2000
+@@ -538,7 +538,7 @@
+ }
+ mem_free(w);
+ if (!(w = get_word(&c))) goto err;
+- if (strlen(w) != 1 || w[0] < '0' || w[0] > '2') goto err_f;
++ if (strlen(w) != 1 || w[0] < '0' || w[0] > '3') goto err_f;
+ ts->mode = w[0] - '0';
+ mem_free(w);
+ if (!(w = get_word(&c))) goto err;
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;