diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-09 11:47:32 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-09 11:47:32 -0200 |
commit | d6232a0b2e53d6bd374c762a4f47e7a8799de5d2 (patch) | |
tree | ec882867b57b126f4f53fae5bd599768a2635408 /llimits.h | |
parent | ae63a0e692fdc64a2bbafcb6ff10ecbdf3946f88 (diff) | |
download | lua-d6232a0b2e53d6bd374c762a4f47e7a8799de5d2.tar.gz lua-d6232a0b2e53d6bd374c762a4f47e7a8799de5d2.tar.bz2 lua-d6232a0b2e53d6bd374c762a4f47e7a8799de5d2.zip |
better treatment for source names
Diffstat (limited to '')
-rw-r--r-- | llimits.h | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llimits.h,v 1.16 2000/10/03 14:03:21 roberto Exp roberto $ | 2 | ** $Id: llimits.h,v 1.17 2000/10/06 19:28:38 roberto Exp roberto $ |
3 | ** Limits, basic types, and some other "installation-dependent" definitions | 3 | ** Limits, basic types, and some other "installation-dependent" definitions |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -104,7 +104,7 @@ typedef unsigned long Instruction; | |||
104 | /* | 104 | /* |
105 | ** limits for opcode arguments. | 105 | ** limits for opcode arguments. |
106 | ** we use (signed) int to manipulate most arguments, | 106 | ** we use (signed) int to manipulate most arguments, |
107 | ** so they must fit in BITS_INT-1 bits (-1 for signal) | 107 | ** so they must fit in BITS_INT-1 bits (-1 for sign) |
108 | */ | 108 | */ |
109 | #if SIZE_U < BITS_INT-1 | 109 | #if SIZE_U < BITS_INT-1 |
110 | #define MAXARG_U ((1<<SIZE_U)-1) | 110 | #define MAXARG_U ((1<<SIZE_U)-1) |
@@ -196,10 +196,4 @@ typedef unsigned long Instruction; | |||
196 | #endif | 196 | #endif |
197 | 197 | ||
198 | 198 | ||
199 | /* maximum part of a file name kept for error messages */ | ||
200 | #ifndef MAXFILENAME | ||
201 | #define MAXFILENAME 260 | ||
202 | #endif | ||
203 | |||
204 | |||
205 | #endif | 199 | #endif |