1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-06 22:51:41 +00:00
freebsd-ports/www/elinks-devel/files/patch-aa
Maxim Sobolev 8b2fc1193c 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
2000-09-05 06:54:32 +00:00

12 lines
360 B
Plaintext

--- 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;