-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check compatibility options for using lua5.0 #25
Comments
Compatibility is a maybe due to functions being added which I use in later versions. By stripping features, I can implement LuaConsole to support earlier Lua versions. The code may result in being messy or I can figure out a clean way to do it. Whatever the case I will look into it. |
This is a capture of the errors and warnings that print out. It seems there are various function names that change. This isn't too surprising, as 5.0 and 5.1 aren't backwards compatible and shouldn't be expected to be. The same with previous versions and versions a set above that. However, it shouldn't break lua code at all. I think that is reserved for the first number as they follow this versioning: incompat.compat.patch where incompat breaks functionality between versions, compat alters functions but nothing should break, and patch are general purpose patches that don't alter much of anything. Breakdown symbol -> suggestion : naming error, function may change, arguments may change
|
I would like to add Lua-5.0 to the build category listing.
I am not sure which functions I will have to remove (or add :o) in order to include it.
The text was updated successfully, but these errors were encountered: