Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RM= rm -f
# == END OF USER SETTINGS -- NO NEED TO CHANGE ANYTHING BELOW THIS LINE =======

# Convenience platforms targets.
PLATS= guess aix bsd c89 freebsd generic ios linux linux-readline macosx mingw posix solaris
PLATS= guess aix bsd c89 freebsd generic ios linux macosx mingw posix solaris

# What to install.
TO_BIN= lua luac
Expand All @@ -45,8 +45,8 @@ TO_LIB= liblua.a
TO_MAN= lua.1 luac.1

# Lua version and release.
V= 5.4
R= $V.6
V= 5.5
R= $V.0

# Targets start here.
all: $(PLAT)
Expand Down
Binary file added doc/OSIApproved.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
143 changes: 90 additions & 53 deletions doc/contents.html

Large diffs are not rendered by default.

Binary file added doc/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 8 additions & 8 deletions doc/lua.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" $Id: lua.man,v 1.14 2022/09/23 09:06:36 lhf Exp $
.TH LUA 1 "$Date: 2022/09/23 09:06:36 $"
.\" $Id: lua.man,v 1.14 2024/03/18 06:57:32 lhf Exp $
.TH LUA 1 "$Date: 2024/03/18 06:57:32 $"
.SH NAME
lua \- Lua interpreter
.SH SYNOPSIS
Expand Down Expand Up @@ -61,7 +61,7 @@ a syntax error is found.
Before handling command line options and scripts,
.B lua
checks the contents of the environment variables
.B LUA_INIT_5_4
.B LUA_INIT_5_5
and
.BR LUA_INIT ,
in that order.
Expand All @@ -72,7 +72,7 @@ then
is executed.
Otherwise, the contents are assumed to be a Lua statement and is executed.
When
.B LUA_INIT_5_4
.B LUA_INIT_5_5
is defined,
.B LUA_INIT
is ignored.
Expand Down Expand Up @@ -119,14 +119,14 @@ When defined,
the version-specific variants take priority
and the version-neutral variants are ignored.
.TP
.B LUA_INIT, LUA_INIT_5_4
.B LUA_INIT, LUA_INIT_5_5
Code to be executed before command line options and scripts.
.TP
.B LUA_PATH, LUA_PATH_5_4
Initial value of package.cpath,
.B LUA_PATH, LUA_PATH_5_5
Initial value of package.path,
the path used by require to search for Lua loaders.
.TP
.B LUA_CPATH, LUA_CPATH_5_4
.B LUA_CPATH, LUA_CPATH_5_5
Initial value of package.cpath,
the path used by require to search for C loaders.
.SH EXIT STATUS
Expand Down
1 change: 1 addition & 0 deletions doc/lua.css
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ table.book td.cover {

table.book img {
border: solid #000080 1px ;
border-radius: 2px ;
}

table.book span {
Expand Down
Loading