Skip to content

Commit 17333ff

Browse files
committed
Remove unnecessary comments
1 parent 6807648 commit 17333ff

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

src/auglua.c

-21
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ static int lua_aug_get(lua_State *L) {
7070
return lua_pusherror(L);
7171
lua_pushstring(L, value);
7272

73-
/* return the number of results */
7473
return 1;
7574
}
7675

@@ -89,7 +88,6 @@ static int lua_aug_label(lua_State *L) {
8988
return lua_pusherror(L);
9089
lua_pushstring(L, value);
9190

92-
/* return the number of results */
9391
return 1;
9492
}
9593

@@ -108,7 +106,6 @@ static int lua_aug_set(lua_State *L) {
108106
if (r < 0)
109107
return lua_pusherror(L);
110108

111-
/* return the number of results */
112109
return 0;
113110
}
114111

@@ -128,7 +125,6 @@ static int lua_aug_setm(lua_State *L) {
128125
if (r < 0)
129126
return lua_pusherror(L);
130127

131-
/* return the number of results */
132128
return 0;
133129
}
134130

@@ -149,7 +145,6 @@ static int lua_aug_insert(lua_State *L) {
149145
if (r < 0)
150146
return lua_pusherror(L);
151147

152-
/* return the number of results */
153148
return 0;
154149
}
155150

@@ -167,7 +162,6 @@ static int lua_aug_rm(lua_State *L) {
167162
if (r < 0)
168163
return lua_pusherror(L);
169164

170-
/* return the number of results */
171165
return 0;
172166
}
173167

@@ -186,7 +180,6 @@ static int lua_aug_mv(lua_State *L) {
186180
if (r < 0)
187181
return lua_pusherror(L);
188182

189-
/* return the number of results */
190183
return 0;
191184
}
192185

@@ -205,7 +198,6 @@ static int lua_aug_cp(lua_State *L) {
205198
if (r < 0)
206199
return lua_pusherror(L);
207200

208-
/* return the number of results */
209201
return 0;
210202
}
211203

@@ -224,7 +216,6 @@ static int lua_aug_rename(lua_State *L) {
224216
if (r < 0)
225217
return lua_pusherror(L);
226218

227-
/* return the number of results */
228219
return 0;
229220
}
230221

@@ -241,7 +232,6 @@ static int lua_aug_clear(lua_State *L) {
241232
if (r < 0)
242233
return lua_pusherror(L);
243234

244-
/* return the number of results */
245235
return 0;
246236
}
247237

@@ -259,7 +249,6 @@ static int lua_aug_clearm(lua_State *L) {
259249
if (r < 0)
260250
return lua_pusherror(L);
261251

262-
/* return the number of results */
263252
return 0;
264253
}
265254

@@ -279,7 +268,6 @@ static int lua_aug_touch(lua_State *L) {
279268
return lua_pusherror(L);
280269
}
281270

282-
/* return the number of results */
283271
return 0;
284272
}
285273

@@ -298,7 +286,6 @@ static int lua_aug_matches(lua_State *L) {
298286
return lua_pusherror(L);
299287

300288
lua_pushinteger(L, r);
301-
/* return the number of results */
302289
return 1;
303290
}
304291

@@ -327,7 +314,6 @@ static int lua_aug_match(lua_State *L) {
327314
free(match);
328315
lua_pushinteger(L, r);
329316

330-
/* return the number of results */
331317
return 2;
332318
}
333319

@@ -346,7 +332,6 @@ static int lua_aug_defvar(lua_State *L) {
346332
if (r < 0)
347333
return lua_pusherror(L);
348334

349-
/* return the number of results */
350335
return 0;
351336
}
352337

@@ -366,7 +351,6 @@ static int lua_aug_defnode(lua_State *L) {
366351
if (r < 0)
367352
return lua_pusherror(L);
368353

369-
/* return the number of results */
370354
return 0;
371355
}
372356

@@ -386,7 +370,6 @@ static int lua_aug_save(lua_State *L) {
386370
printf("Saved %d file(s)\n", r);
387371
}
388372

389-
/* return the number of results */
390373
return 0;
391374
}
392375

@@ -400,7 +383,6 @@ static int lua_aug_load(lua_State *L) {
400383
if (r < 0)
401384
return lua_pusherror(L);
402385

403-
/* return the number of results */
404386
return 0;
405387
}
406388

@@ -419,7 +401,6 @@ static int lua_aug_text_store(lua_State *L) {
419401
if (r < 0)
420402
return lua_pusherror(L);
421403

422-
/* return the number of results */
423404
return 0;
424405
}
425406

@@ -439,7 +420,6 @@ static int lua_aug_text_retrieve(lua_State *L) {
439420
if (r < 0)
440421
return lua_pusherror(L);
441422

442-
/* return the number of results */
443423
return 0;
444424
}
445425

@@ -459,7 +439,6 @@ static int lua_aug_transform(lua_State *L) {
459439
if (r < 0)
460440
return lua_pusherror(L);
461441

462-
/* return the number of results */
463442
return 0;
464443
}
465444

0 commit comments

Comments
 (0)