Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Septh/lua
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: lua/lua
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 9 commits
  • 26 files changed
  • 1 contributor

Commits on Apr 7, 2026

  1. Avoid macros luaL_loadbuffer and luaL_loadfile

    Use luaL_loadbufferx and luaL_loadfilex instead, being explicit about
    whether to accept binary chunks.
    roberto-ieru committed Apr 7, 2026
    Configuration menu
    Copy the full SHA
    29cf284 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2026

  1. Configuration menu
    Copy the full SHA
    d0bd25d View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2026

  1. Details

    Added compiler option LUA_NODEBUGLIB to make Lua with no open debug
    library + small improvements in the manual.
    roberto-ieru committed Apr 21, 2026
    Configuration menu
    Copy the full SHA
    0c16a42 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2026

  1. Bug: 'lua_load' does not preserve the stack

    'lua_load' does not preserve the stack through the calls to the
    reader function, as it should. Immediately after the first call (to
    detect whether chunk is binary) it adds stuff, and it also adds a new
    table when starting the compilation of each new function.
    roberto-ieru committed Apr 23, 2026
    Configuration menu
    Copy the full SHA
    3228a97 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4c5d506 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ae23e72 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2026

  1. Details

    roberto-ieru committed Apr 28, 2026
    Configuration menu
    Copy the full SHA
    0da6d32 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2026

  1. Small correction in luaP_opmodes

    OP_VARARGPREP neither sets nor uses L->top.
    roberto-ieru committed Apr 29, 2026
    Configuration menu
    Copy the full SHA
    36c1f6d View commit details
    Browse the repository at this point in the history

Commits on May 8, 2026

  1. Avoid warning in some compilers

    In function 'funcargs', some compilers can complain that 'args' can be
    used unitialized, due to the default case (syntax error).
    roberto-ieru committed May 8, 2026
    Configuration menu
    Copy the full SHA
    53b41d0 View commit details
    Browse the repository at this point in the history
Loading