@@ -70,7 +70,6 @@ static int lua_aug_get(lua_State *L) {
70
70
return lua_pusherror (L );
71
71
lua_pushstring (L , value );
72
72
73
- /* return the number of results */
74
73
return 1 ;
75
74
}
76
75
@@ -89,7 +88,6 @@ static int lua_aug_label(lua_State *L) {
89
88
return lua_pusherror (L );
90
89
lua_pushstring (L , value );
91
90
92
- /* return the number of results */
93
91
return 1 ;
94
92
}
95
93
@@ -108,7 +106,6 @@ static int lua_aug_set(lua_State *L) {
108
106
if (r < 0 )
109
107
return lua_pusherror (L );
110
108
111
- /* return the number of results */
112
109
return 0 ;
113
110
}
114
111
@@ -128,7 +125,6 @@ static int lua_aug_setm(lua_State *L) {
128
125
if (r < 0 )
129
126
return lua_pusherror (L );
130
127
131
- /* return the number of results */
132
128
return 0 ;
133
129
}
134
130
@@ -149,7 +145,6 @@ static int lua_aug_insert(lua_State *L) {
149
145
if (r < 0 )
150
146
return lua_pusherror (L );
151
147
152
- /* return the number of results */
153
148
return 0 ;
154
149
}
155
150
@@ -167,7 +162,6 @@ static int lua_aug_rm(lua_State *L) {
167
162
if (r < 0 )
168
163
return lua_pusherror (L );
169
164
170
- /* return the number of results */
171
165
return 0 ;
172
166
}
173
167
@@ -186,7 +180,6 @@ static int lua_aug_mv(lua_State *L) {
186
180
if (r < 0 )
187
181
return lua_pusherror (L );
188
182
189
- /* return the number of results */
190
183
return 0 ;
191
184
}
192
185
@@ -205,7 +198,6 @@ static int lua_aug_cp(lua_State *L) {
205
198
if (r < 0 )
206
199
return lua_pusherror (L );
207
200
208
- /* return the number of results */
209
201
return 0 ;
210
202
}
211
203
@@ -224,7 +216,6 @@ static int lua_aug_rename(lua_State *L) {
224
216
if (r < 0 )
225
217
return lua_pusherror (L );
226
218
227
- /* return the number of results */
228
219
return 0 ;
229
220
}
230
221
@@ -241,7 +232,6 @@ static int lua_aug_clear(lua_State *L) {
241
232
if (r < 0 )
242
233
return lua_pusherror (L );
243
234
244
- /* return the number of results */
245
235
return 0 ;
246
236
}
247
237
@@ -259,7 +249,6 @@ static int lua_aug_clearm(lua_State *L) {
259
249
if (r < 0 )
260
250
return lua_pusherror (L );
261
251
262
- /* return the number of results */
263
252
return 0 ;
264
253
}
265
254
@@ -279,7 +268,6 @@ static int lua_aug_touch(lua_State *L) {
279
268
return lua_pusherror (L );
280
269
}
281
270
282
- /* return the number of results */
283
271
return 0 ;
284
272
}
285
273
@@ -298,7 +286,6 @@ static int lua_aug_matches(lua_State *L) {
298
286
return lua_pusherror (L );
299
287
300
288
lua_pushinteger (L , r );
301
- /* return the number of results */
302
289
return 1 ;
303
290
}
304
291
@@ -327,7 +314,6 @@ static int lua_aug_match(lua_State *L) {
327
314
free (match );
328
315
lua_pushinteger (L , r );
329
316
330
- /* return the number of results */
331
317
return 2 ;
332
318
}
333
319
@@ -346,7 +332,6 @@ static int lua_aug_defvar(lua_State *L) {
346
332
if (r < 0 )
347
333
return lua_pusherror (L );
348
334
349
- /* return the number of results */
350
335
return 0 ;
351
336
}
352
337
@@ -366,7 +351,6 @@ static int lua_aug_defnode(lua_State *L) {
366
351
if (r < 0 )
367
352
return lua_pusherror (L );
368
353
369
- /* return the number of results */
370
354
return 0 ;
371
355
}
372
356
@@ -386,7 +370,6 @@ static int lua_aug_save(lua_State *L) {
386
370
printf ("Saved %d file(s)\n" , r );
387
371
}
388
372
389
- /* return the number of results */
390
373
return 0 ;
391
374
}
392
375
@@ -400,7 +383,6 @@ static int lua_aug_load(lua_State *L) {
400
383
if (r < 0 )
401
384
return lua_pusherror (L );
402
385
403
- /* return the number of results */
404
386
return 0 ;
405
387
}
406
388
@@ -419,7 +401,6 @@ static int lua_aug_text_store(lua_State *L) {
419
401
if (r < 0 )
420
402
return lua_pusherror (L );
421
403
422
- /* return the number of results */
423
404
return 0 ;
424
405
}
425
406
@@ -439,7 +420,6 @@ static int lua_aug_text_retrieve(lua_State *L) {
439
420
if (r < 0 )
440
421
return lua_pusherror (L );
441
422
442
- /* return the number of results */
443
423
return 0 ;
444
424
}
445
425
@@ -459,7 +439,6 @@ static int lua_aug_transform(lua_State *L) {
459
439
if (r < 0 )
460
440
return lua_pusherror (L );
461
441
462
- /* return the number of results */
463
442
return 0 ;
464
443
}
465
444
0 commit comments