bugs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 "empty" 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.
  32. --- Version 3.1
  33. ** liolib.c / lauxlib.c
  34. Mon Sep 7 15:57:02 EST 1998
  35. >> function "luaL_argerror" prints wrong argument number (from a user's point
  36. of view) when functions have upvalues.
  37. ** lstrlib.c
  38. Tue Nov 10 17:29:36 EDT 1998
  39. >> gsub/strfind do not check whether captures are properly finished.
  40. ** lbuiltin.c
  41. Fri Dec 18 11:22:55 EDT 1998
  42. >> "tonumber" goes crazy with negative numbers in other bases (not 10),
  43. because "strtol" returns long, not unsigned long.
  44. ** lstrlib.c
  45. Mon Jan 4 10:41:40 EDT 1999
  46. >> "format" does not check size of format item (such as "%00000...00000d").
  47. ** lapi.c
  48. Wed Feb 3 14:40:21 EDT 1999
  49. >> getlocal cannot return the local itself, since lua_isstring and
  50. lua_isnumber can modify it.
  51. ** lstrlib.c
  52. Thu Feb 4 17:08:50 EDT 1999
  53. >> format "%s" may break limit of "sprintf" on some machines.
  54. ** lzio.c
  55. Thu Mar 4 11:49:37 EST 1999
  56. >> file stream cannot call fread after EOF.