aboutsummaryrefslogtreecommitdiff
path: root/strlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'strlib.c')
-rw-r--r--strlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/strlib.c b/strlib.c
index a24e4bf2..d34268b7 100644
--- a/strlib.c
+++ b/strlib.c
@@ -3,7 +3,7 @@
3** String library to LUA 3** String library to LUA
4*/ 4*/
5 5
6char *rcs_strlib="$Id: strlib.c,v 1.42 1997/06/16 20:29:59 roberto Exp roberto $"; 6char *rcs_strlib="$Id: strlib.c,v 1.43 1997/06/18 20:15:47 roberto Exp roberto $";
7 7
8#include <string.h> 8#include <string.h>
9#include <stdio.h> 9#include <stdio.h>
@@ -94,7 +94,7 @@ static void str_sub (void)
94 addnchar(s+start-1, end-start+1); 94 addnchar(s+start-1, end-start+1);
95 lua_pushstring(luaI_addchar(0)); 95 lua_pushstring(luaI_addchar(0));
96 } 96 }
97 else lua_pushliteral(""); 97 else lua_pushstring("");
98} 98}
99 99
100/* 100/*