bugs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ** lua.stx / llex.c
  2. Tue Dec 2 10:45:48 EDT 1997
  3. >> BUG: "lastline" was not reset on function entry, so debug information
  4. >> started only in the 2nd line of a function.
  5. --- Version 3.1 alpha
  6. ** lua.c
  7. Thu Jan 15 14:34:58 EDT 1998
  8. >> must include "stdlib.h" (for "exit()").
  9. ** lbuiltin.c / lobject.h
  10. Thu Jan 15 14:34:58 EDT 1998
  11. >> MAX_WORD may be bigger than MAX_INT
  12. ** llex.c
  13. Mon Jan 19 18:17:18 EDT 1998
  14. >> wrong line number (+1) in error report when file starts with "#..."
  15. ** lstrlib.c
  16. Tue Jan 27 15:27:49 EDT 1998
  17. >> formats like "%020d" were considered too big (3 digits); moreover,
  18. >> some sistems limit printf to at most 500 chars, so we can limit sizes
  19. >> to 2 digits (99).
  20. ** lapi.c
  21. Tue Jan 27 17:12:36 EDT 1998
  22. >> "lua_getstring" may create a new string, so should check GC
  23. ** lstring.c / ltable.c
  24. Wed Jan 28 14:48:12 EDT 1998
  25. >> tables can become full of "emptys" slots, and keep growing without limits.
  26. ** lstrlib.c
  27. Mon Mar 9 15:26:09 EST 1998
  28. >> gsub('a', '(b?)%1*' ...) loops (because the capture is empty).
  29. ** lstrlib.c
  30. Mon May 18 19:20:00 EST 1998
  31. >> arguments for "format" 'x', 'X', 'o' and 'u' must be unsigned int.