diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-10-08 15:46:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-10-08 15:46:08 -0300 |
commit | b3d0682fb94f56a438dbb4fdb2b3440ccc10cfb4 (patch) | |
tree | 746fc9900768dfaf1ddffca35cb4f6fd55903bbf /lobject.h | |
parent | 02afc892d5ce5d85e88faac443d7294589ee697a (diff) | |
download | lua-b3d0682fb94f56a438dbb4fdb2b3440ccc10cfb4.tar.gz lua-b3d0682fb94f56a438dbb4fdb2b3440ccc10cfb4.tar.bz2 lua-b3d0682fb94f56a438dbb4fdb2b3440ccc10cfb4.zip |
use of different buffers for scanner and concatenation
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.145 2002/09/02 19:54:49 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.146 2002/09/19 13:03:53 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -316,8 +316,6 @@ extern const TObject luaO_nilobject; | |||
316 | int luaO_log2 (unsigned int x); | 316 | int luaO_log2 (unsigned int x); |
317 | 317 | ||
318 | 318 | ||
319 | char *luaO_openspace (lua_State *L, size_t n); | ||
320 | |||
321 | int luaO_rawequalObj (const TObject *t1, const TObject *t2); | 319 | int luaO_rawequalObj (const TObject *t1, const TObject *t2); |
322 | int luaO_str2d (const char *s, lua_Number *result); | 320 | int luaO_str2d (const char *s, lua_Number *result); |
323 | 321 | ||