Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Aug 2000 09:21:36 -0700 (PDT)
From:      strijar@urai.ru
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/20947: port www/links bugs
Message-ID:  <20000830162136.D0C7537B42C@hub.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         20947
>Category:       ports
>Synopsis:       port www/links bugs
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Aug 30 09:30:00 PDT 2000
>Closed-Date:
>Last-Modified:
>Originator:     Belousov Oleg
>Release:        4.1-Stable
>Organization:
JSC "UnicomTechService"
>Environment:
>Description:
1.Problems with keys PgUp PgDn Home End
2.Terminal options -> KOI8-R frames not read from ~/.links/links.cfg

>How-To-Repeat:

>Fix:
--- default.c.orig      Thu Jun 22 13:37:36 2000
+++ default.c   Tue Aug 15 23:27:40 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;

--- kbd.c.orig  Tue Jun 27 22:19:48 2000
+++ kbd.c       Tue Aug 15 23:41:05 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;

>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000830162136.D0C7537B42C>