aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-04-24 18:05:11 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-04-24 18:05:11 -0300
commit2ae9c856cfd8db834e023ee0b00601d02df9b388 (patch)
tree7942365e1fa6e4ab7818e8b19e1bfb82234bd1d8
parentc4409f69aba65f3b6d4921a5bd4f734fb85b91f9 (diff)
downloadlua-2ae9c856cfd8db834e023ee0b00601d02df9b388.tar.gz
lua-2ae9c856cfd8db834e023ee0b00601d02df9b388.tar.bz2
lua-2ae9c856cfd8db834e023ee0b00601d02df9b388.zip
more uniform names
-rw-r--r--liolib.c4
-rw-r--r--makefile6
2 files changed, 5 insertions, 5 deletions
diff --git a/liolib.c b/liolib.c
index 68358f6a..4ec56630 100644
--- a/liolib.c
+++ b/liolib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: liolib.c,v 1.60 2000/03/22 16:24:13 roberto Exp roberto $ 2** $Id: liolib.c,v 1.61 2000/03/30 17:19:48 roberto Exp roberto $
3** Standard I/O (and system) library 3** Standard I/O (and system) library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -231,7 +231,7 @@ static void io_appendto (lua_State *L) {
231 231
232 232
233 233
234#ifdef COMPAT_READPATTERN 234#ifdef LUA_COMPAT_READPATTERN
235 235
236/* 236/*
237** We cannot lookahead without need, because this can lock stdin. 237** We cannot lookahead without need, because this can lock stdin.
diff --git a/makefile b/makefile
index 24f42a38..ae80f316 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,5 @@
1# 1#
2## $Id: makefile,v 1.24 2000/04/14 17:50:30 roberto Exp $ 2## $Id: makefile,v 1.24 2000/04/14 17:52:09 roberto Exp roberto $
3## Makefile 3## Makefile
4## See Copyright Notice in lua.h 4## See Copyright Notice in lua.h
5# 5#
@@ -18,11 +18,11 @@
18# define LUA_NUM_TYPE if you need numbers to be different from double 18# define LUA_NUM_TYPE if you need numbers to be different from double
19# (for instance, -DLUA_NUM_TYPE=float) 19# (for instance, -DLUA_NUM_TYPE=float)
20# 20#
21# define COMPAT_READPATTERN if you need read patterns 21# define LUA_COMPAT_READPATTERN if you need read patterns
22# (only for compatibility with previous versions) 22# (only for compatibility with previous versions)
23 23
24CONFIG = -DPOPEN -D_POSIX_SOURCE 24CONFIG = -DPOPEN -D_POSIX_SOURCE
25#CONFIG = -DOLD_ANSI -DDEBUG -DCOMPAT_READPATTERN 25#CONFIG = -DOLD_ANSI -DDEBUG -DLUA_COMPAT_READPATTERN
26 26
27 27
28# Compilation parameters 28# Compilation parameters