about summary refs log tree commit diff stats
path: root/src/lcurses/_helpers.c
Commit message (Collapse)AuthorAgeFilesLines
* get Teliva running on NetBSDKartik K. Agaram2022-01-241-0/+4
| | | | | | | | NetBSD still uses curses by default. One _could_ install ncurses, but I don't have access to a NetBSD box with permissions to install ncurses, so I'm experimenting to see how far we can get with just curses. So far most of the apps seem to work, with the exception of one bug that I'll commit next.
* delete some dead codeKartik K. Agaram2022-01-241-6/+0
| | | | | I'm kinda sorta able to get lcurses running on NetBSD 9.2 without this particular hack.
* inline lcurses maximally rather than minimallyKartik K. Agaram2021-11-191-0/+210
Until now we had just the bare minimum bindings needed for the demos built so far. Now we have all of lcurses building in place with minimal changes. The changes in this commit can run hanoi.lua when inlined into Lua 5.1, but don't work with Teliva.
nown> 2006-09-19 16:13:44 +0200 committer arg@mmvi <unknown> 2006-09-19 16:13:44 +0200 some simplifications to intro in dwm.h' href='/acidbong/suckless/dwm/commit/dwm.h?h=5.2&id=551d6bb23dd4772a1a53a99d8d823ada5de9c3b6'>551d6bb ^
e6cc223 ^
a1e9362 ^




551d6bb ^

e6cc223 ^
cbfc69e ^

cdbc84b ^

e6cc223 ^
551d6bb ^
1076f2b

b515765 ^
95e8d12 ^
8b59083 ^
7b5638f ^
7c2e3bb ^
7b5638f ^
2aef8b9 ^
281f098 ^
0045ad8 ^
2aef8b9 ^

281f098 ^
b5159df ^
1076f2b
da2bbd3 ^
1173723 ^
346bdea ^
a05beb6 ^
9ca5c3b ^
a05beb6 ^
22399a3 ^
338c083 ^
b355755 ^
1076f2b
72707c2 ^
15abade ^
bf35794 ^
1076f2b

cdbc84b ^
8d11163 ^














cdbc84b ^



b3419f4 ^














39677ec ^
439e15d ^
1df4559 ^
83aa110 ^
1df4559 ^

199a601 ^
2aef8b9 ^
1df4559 ^

f841501 ^
ab3d6a7 ^
83aa110 ^

2aef8b9 ^
1df4559 ^
3399650 ^
e750878 ^
1df4559 ^


e750878 ^
dba2306 ^
1df4559 ^
b9da4b0 ^
8012fcf ^
1df4559 ^






70c7b43 ^
2aef8b9 ^

1df4559 ^
8012fcf ^
9e8b325 ^
2aef8b9 ^
1df4559 ^
1df4559 ^
9e8b325 ^
8012fcf ^
1df4559 ^


ab3d6a7 ^
2aef8b9 ^
1df4559 ^

4cdbd52 ^

1df4559 ^


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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151