aboutsummaryrefslogtreecommitdiff
path: root/src/lib_string.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib_string.c')
-rw-r--r--src/lib_string.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib_string.c b/src/lib_string.c
index c8243d6c..f3c29aa7 100644
--- a/src/lib_string.c
+++ b/src/lib_string.c
@@ -133,13 +133,13 @@ LJLIB_ASM(string_rep)
133 return FFH_RES(1); 133 return FFH_RES(1);
134} 134}
135 135
136LJLIB_ASM(string_reverse) 136LJLIB_ASM(string_reverse) LJLIB_REC(string_op IRCALL_lj_buf_putstr_reverse)
137{ 137{
138 lj_lib_checkstr(L, 1); 138 lj_lib_checkstr(L, 1);
139 return FFH_RETRY; 139 return FFH_RETRY;
140} 140}
141LJLIB_ASM_(string_lower) 141LJLIB_ASM_(string_lower) LJLIB_REC(string_op IRCALL_lj_buf_putstr_lower)
142LJLIB_ASM_(string_upper) 142LJLIB_ASM_(string_upper) LJLIB_REC(string_op IRCALL_lj_buf_putstr_upper)
143 143
144/* ------------------------------------------------------------------------ */ 144/* ------------------------------------------------------------------------ */
145 145