Skip to content

Commit

Permalink
Remove unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
raphink committed Dec 2, 2015
1 parent 6807648 commit 17333ff
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions src/auglua.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ static int lua_aug_get(lua_State *L) {
return lua_pusherror(L);
lua_pushstring(L, value);

/* return the number of results */
return 1;
}

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

/* return the number of results */
return 1;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

lua_pushinteger(L, r);
/* return the number of results */
return 1;
}

Expand Down Expand Up @@ -327,7 +314,6 @@ static int lua_aug_match(lua_State *L) {
free(match);
lua_pushinteger(L, r);

/* return the number of results */
return 2;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

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

/* return the number of results */
return 0;
}

Expand Down

0 comments on commit 17333ff

Please sign in to comment.