aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lstrlib.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/lstrlib.c b/lstrlib.c
index 25aa7748..4a99d4d2 100644
--- a/lstrlib.c
+++ b/lstrlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstrlib.c,v 1.118 2005/07/05 14:30:38 roberto Exp roberto $ 2** $Id: lstrlib.c,v 1.119 2005/07/12 14:32:08 roberto Exp $
3** Standard library for string operations and pattern-matching 3** Standard library for string operations and pattern-matching
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -600,8 +600,12 @@ static void add_s (MatchState *ms, luaL_Buffer *b,
600 if (!isdigit(uchar(news[i]))) 600 if (!isdigit(uchar(news[i])))
601 luaL_putchar(b, news[i]); 601 luaL_putchar(b, news[i]);
602 else { 602 else {
603 int level = check_capture(ms, news[i]); 603 if (news[i] == '0')
604 push_onecapture(ms, level); 604 lua_pushlstring(L, s, e - s); /* add whole match */
605 else {
606 int level = check_capture(ms, news[i]);
607 push_onecapture(ms, level);
608 }
605 luaL_addvalue(b); /* add capture to accumulated result */ 609 luaL_addvalue(b); /* add capture to accumulated result */
606 } 610 }
607 } 611 }