From owner-freebsd-hackers Fri Sep 19 12:33:35 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA02714 for hackers-outgoing; Fri, 19 Sep 1997 12:33:35 -0700 (PDT) Received: from mailout02.btx.dtag.de (mailout02.btx.dtag.de [194.25.2.150]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id MAA02707 for ; Fri, 19 Sep 1997 12:33:29 -0700 (PDT) Received: from fwd11.btx.dtag.de [194.25.2.171] by mailout02.btx.dtag.de with smtp id 0xC8mm-0002KJ-00; Fri, 19 Sep 1997 21:32:17 +0200 Received: (053235370-0001(btxid)@[193.159.66.235]) by fwd11.btx.dtag.de with (S3.1.29.1) id ; Fri, 19 Sep 97 21:32 MET DST Message-Id: Date: Fri, 19 Sep 97 21:32 MET DST To: hackers@freebsd.org Subject: Submission: patch for termcap, the second X-Mailer: T-Online eMail 2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT X-Sender: 053235370-0001@t-online.de (Klaus-Juergen Wolf) From: Yanestra@t-online.de (Yanestra) Sender: owner-freebsd-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Dear FreeBSD people, it has shown that my last patch for /usr/share/termcap was not quite useful. It appears that someone had introduced a new token to termcap, "@7". This token is documented somewhere in the NCurses docs, which is in my personal opinion totally irrelevant. The old standard says that "@7" should be named "kH", and I see no reason why this should be changed, for the sake of many programs which rely on it. This is the patch for termcap as in FreeBSD 2.2.2. If you see any problems, read the termcap(5) manual page first, then throw away the brain damaged garbage some people have written on that topic, esp. those from the NCurses team. --cut-here-- 233c233 < :@7=\E[4~:kh=\E[1~:kI=\E[2~:k0=\E[10~:\ --- > :kH=\E[4~:kh=\E[1~:kI=\E[2~:k0=\E[10~:\ 252c252 < :@7=\E[4~:kh=\E[1~:kI=\E[2~:k0=\E[10~:\ --- > :kH=\E[4~:kh=\E[1~:kI=\E[2~:k0=\E[10~:\ 302c302 < :kh=\EOH:@7=\EOF:\ --- > :kh=\EOH:kH=\EOF:\ 541c541 < :@7=\E[Y:AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:\ --- > :kH=\E[Y:AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:\ 1252c1252 < :ku=\E[A:kD=\177:@7=\E[146q:@8=\r:\ --- > :ku=\E[A:kD=\177:kH=\E[146q:@8=\r:\ 2375c2375 < :kN=\E[G:kP=\E[I:@7=\E[F:kI=\E[L:kD=\177:kB=\E[Z:\ --- > :kN=\E[G:kP=\E[I:kH=\E[F:kI=\E[L:kD=\177:kB=\E[Z:\ 2578c2578 < :@7=\E[K:kh=\E[H:kN=\E[Oq:kP=\E[Or:kI=\EOn:kD=\ED:\ --- > :kH=\E[K:kh=\E[H:kN=\E[Oq:kP=\E[Or:kI=\EOn:kD=\ED:\ 3885c3885 < :@7=\E[F:\ --- > :kH=\E[F:\ --cut-here- Ciao jay