summaryrefslogtreecommitdiff
path: root/security/putty/patches/patch-terminal.c
blob: 2d1a41e9df79fda47c91facad32fa39a1e1d8419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$NetBSD: patch-terminal.c,v 1.5 2019/12/19 22:22:33 joerg Exp $

Make the home/end keys work on BSD servers as well as Linux ones

--- terminal.c.orig	2019-09-22 09:14:51.000000000 +0000
+++ terminal.c
@@ -6892,8 +6892,17 @@ int format_small_keypad_key(char *buf, T
         } else {
             p += sprintf(p, "\x1B[%c", codes[code-1]);
         }
-    } else if ((code == 1 || code == 4) && term->rxvt_homeend) {
-        p += sprintf(p, code == 1 ? "\x1B[H" : "\x1BOw");
+    } else if (code == 1 || code == 4) {
+	/* Home/End */
+	/* Send the correct XTerm or rxvt codes for home/end
+	 * We used to send ^[1~ and [4~ for Xterm,
+	 * but those are Linux console */
+	const char *he;
+	if (term->rxvt_homeend)
+	    he = code == 1 ? "\x1B[7~" : "\x1B[8~";
+	else
+	    he = code == 1 ? "\x1BOH" : "\x1BOF";
+	p += sprintf((char *) p, "%s", he);
     } else {
         p += sprintf(p, "\x1B[%d~", code);
     }