diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-07-01 11:21:57 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-07-01 11:21:57 -0300 |
commit | bee1a5aeb233ba555205310db7a55dd7decfa74d (patch) | |
tree | d290425798167f8eead64930fe640a676ff75ef6 | |
parent | 994aba062b5cae032c751afc7cc35053ec4e2b94 (diff) | |
download | lua-bee1a5aeb233ba555205310db7a55dd7decfa74d.tar.gz lua-bee1a5aeb233ba555205310db7a55dd7decfa74d.tar.bz2 lua-bee1a5aeb233ba555205310db7a55dd7decfa74d.zip |
spelling
-rw-r--r-- | lstrlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstrlib.c,v 1.16 1998/06/24 13:33:00 roberto Exp roberto $ | 2 | ** $Id: lstrlib.c,v 1.17 1998/06/29 18:24:06 roberto Exp roberto $ |
3 | ** Standard library for strings and pattern-matching | 3 | ** Standard library for strings and pattern-matching |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -364,7 +364,7 @@ static void str_find (void) | |||
364 | } | 364 | } |
365 | } while (s1++<cap.src_end && !anchor); | 365 | } while (s1++<cap.src_end && !anchor); |
366 | } | 366 | } |
367 | lua_pushnil(); /* if arives here, it didn't find */ | 367 | lua_pushnil(); /* if arrives here, it didn't find */ |
368 | } | 368 | } |
369 | 369 | ||
370 | 370 | ||