~ubuntu-branches/ubuntu/trusty/screen/trusty-backports

« back to all changes in this revision

Viewing changes to kmapdef.c.dist

  • Committer: Package Import Robot
  • Author(s): Axel Beckert
  • Date: 2012-06-10 17:54:53 UTC
  • mfrom: (7.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20120610175453-iq0krkm10j071pjc
Tags: 4.1.0~20120320gitdb59704-2
* Upload to unstable as the two RC issues which the experimental package
  had, are now resolved or at least workarounded:
  - Copy /usr/bin/screen to /tmp/screen-4.0.3 on upgrade from pre-4.1.0
    and use debconf to inform the user about it. (Closes: #644788)
  - Add patch to fix terminal handling on kfreebsd (Closes: #660567)
    Thanks Jan Christoph Nordholz!
* Add patch to fix parallel building.
* Use dh_lintian instead of handling lintian overrides manually.
* No more clean up manually what dh_clean can clean up.
* Add new patch to fix man page errors and warnings:
  - Lintian warning manpage-has-errors-from-man fixed by replacing all
    occurrences of "..." by "…"
  - Fixes tons of lintian warnings hyphen-used-as-minus-sign
  - Added two false positives of hyphen-used-as-minus-sign to
    lintian-overrides
  - Fixes two typos found by lintian
  - Update 80EXP_session_creation_time.patch accordingly

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * This file is automagically created from term.c -- DO NOT EDIT
3
 
 */
4
 
 
5
 
#include "config.h"
6
 
 
7
 
#ifdef MAPKEYS
8
 
 
9
 
char *kmapdef[] = {
10
 
"\033[10~",
11
 
"\033OP",
12
 
"\033OQ",
13
 
"\033OR",
14
 
"\033OS",
15
 
"\033[15~",
16
 
"\033[17~",
17
 
"\033[18~",
18
 
"\033[19~",
19
 
"\033[20~",
20
 
"\033[21~",
21
 
"\033[23~",
22
 
"\033[24~",
23
 
0,
24
 
0,
25
 
0,
26
 
0,
27
 
0,
28
 
0,
29
 
0,
30
 
0,
31
 
0,
32
 
0,
33
 
0,
34
 
0,
35
 
0,
36
 
0,
37
 
0,
38
 
0,
39
 
0,
40
 
0,
41
 
0,
42
 
0,
43
 
0,
44
 
0,
45
 
0,
46
 
0,
47
 
0,
48
 
0,
49
 
0,
50
 
0,
51
 
0,
52
 
0,
53
 
0,
54
 
0,
55
 
0,
56
 
0,
57
 
"\033[1~",
58
 
0,
59
 
"\033[4~",
60
 
0,
61
 
"\033[6~",
62
 
"\033[5~",
63
 
"\033[2~",
64
 
"\033[3~",
65
 
"\033[A",
66
 
"\033[B",
67
 
"\033[C",
68
 
"\033[D",
69
 
"0",
70
 
"1",
71
 
"2",
72
 
"3",
73
 
"4",
74
 
"5",
75
 
"6",
76
 
"7",
77
 
"8",
78
 
"9",
79
 
"+",
80
 
"-",
81
 
"*",
82
 
"/",
83
 
"=",
84
 
".",
85
 
",",
86
 
"\015"
87
 
};
88
 
 
89
 
char *kmapadef[] = {
90
 
"\033OA",
91
 
"\033OB",
92
 
"\033OC",
93
 
"\033OD",
94
 
"\033Op",
95
 
"\033Oq",
96
 
"\033Or",
97
 
"\033Os",
98
 
"\033Ot",
99
 
"\033Ou",
100
 
"\033Ov",
101
 
"\033Ow",
102
 
"\033Ox",
103
 
"\033Oy",
104
 
"\033Ok",
105
 
"\033Om",
106
 
"\033Oj",
107
 
"\033Oo",
108
 
"\033OX",
109
 
"\033On",
110
 
"\033Ol",
111
 
"\033OM"
112
 
};
113
 
 
114
 
char *kmapmdef[] = {
115
 
"\004",
116
 
0,
117
 
0,
118
 
"\025",
119
 
0,
120
 
0,
121
 
0,
122
 
0,
123
 
0,
124
 
0,
125
 
0,
126
 
0,
127
 
0,
128
 
0,
129
 
0,
130
 
"\201",
131
 
0,
132
 
"\205",
133
 
0,
134
 
"\006",
135
 
"\002",
136
 
0,
137
 
0,
138
 
"\220",
139
 
"\216",
140
 
"\206",
141
 
"\202"
142
 
};
143
 
 
144
 
#endif