about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2024-06-23 10:36:29 -0700
committerKartik K. Agaram <vc@akkartik.com>2024-06-23 10:36:29 -0700
commita7d42f115b77f93b30fe325a8c4825265f1517dd (patch)
treeeb0a277aa805694e8ea59d44036ab43d909186cb
parent2fdb6fa729ad64b94937cf4c24aada41769fd0da (diff)
downloadtext.love-a7d42f115b77f93b30fe325a8c4825265f1517dd.tar.gz
correct some comments
-rw-r--r--select.lua8
1 files changed, 3 insertions, 5 deletions
diff --git a/select.lua b/select.lua
index b67dd16..7e48274 100644
--- a/select.lua
+++ b/select.lua
@@ -1,9 +1,8 @@
 -- helpers for selecting portions of text
 
--- Return any intersection of the region from State.selection1 to State.cursor1 (or
--- current mouse, if mouse is pressed; or recent mouse if mouse is pressed and
--- currently over a drawing) with the region between {line=line_index, pos=apos}
--- and {line=line_index, pos=bpos}.
+-- Return any intersection of the region from State.selection1 to
+-- State.cursor1 (or current mouse, if mouse is pressed) with the region
+-- between {line=line_index, pos=apos} and {line=line_index, pos=bpos}.
 -- apos must be less than bpos. However State.selection1 and State.cursor1 can be in any order.
 -- Result: positions spos,epos between apos,bpos.
 function Text.clip_selection(State, line_index, apos, bpos)
@@ -45,7 +44,6 @@ function Text.clip_selection(State, line_index, apos, bpos)
 end
 
 -- draw highlight for line corresponding to (lo,hi) given an approximate x,y and pos on the same screen line
--- Creates text objects every time, so use this sparingly.
 -- Returns some intermediate computation useful elsewhere.
 function Text.draw_highlight(State, line, x,y, pos, lo,hi)
   if lo then
<rumpf_a@web.de> 2014-08-28 23:48:42 +0200 updated the compiler to use the new symbol names' href='/ahoang/Nim/commit/compiler/semasgn.nim?h=devel&id=5946747970f31742bc58bdd2fbe174b8b5cdc678'>594674797 ^
78f371c03 ^
594674797 ^
594674797 ^
78f371c03 ^

594674797 ^

78f371c03 ^

594674797 ^

78f371c03 ^
594674797 ^
78f371c03 ^

594674797 ^
78f371c03 ^

594674797 ^
78f371c03 ^


594674797 ^
78f371c03 ^

594674797 ^
78f371c03 ^
594674797 ^
78f371c03 ^
594674797 ^
78f371c03 ^










594674797 ^
78f371c03 ^

594674797 ^









3bcafb1c3 ^
594674797 ^



78f371c03 ^



































594674797 ^
78f371c03 ^












































594674797 ^
b47d9b7b9 ^
78f371c03 ^


e6c5622aa ^
78f371c03 ^

05e39cf6a ^
78f371c03 ^







594674797 ^
78f371c03 ^


3a13706d7 ^

78f371c03 ^
594674797 ^
78f371c03 ^
594674797 ^

78f371c03 ^
594674797 ^


78f371c03 ^
594674797 ^


78f371c03 ^
594674797 ^

6f7b891bd ^
594674797 ^
f5c3eb6a2 ^
b3de34548 ^
594674797 ^
78f371c03 ^
e6c5622aa ^
78f371c03 ^
f5c3eb6a2 ^
78f371c03 ^








594674797 ^
78f371c03 ^





594674797 ^

78f371c03 ^



























e6c5622aa ^
78f371c03 ^






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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286