Skip to content
This repository was archived by the owner on Nov 20, 2020. It is now read-only.

Lua 5.3 Upgrade to latest versions. #17

Open
wants to merge 3 commits into
base: lua-5.3
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ TO_MAN= lua.1 luac.1

# Lua version and release.
V= 5.3
R= $V.2
R= $V.4

# Targets start here.
all: $(PLAT)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

This is Lua 5.3.2, released on 25 Nov 2015.
This is Lua 5.3.5, released on 26 Jun 2018.

For installation instructions, license details, and
further information about Lua, see doc/readme.html.
2 changes: 1 addition & 1 deletion dist.info
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--- This file is part of LuaDist project

name = "lua"
version = "5.3.2"
version = "5.3.5"

desc = "Lua is a powerful, fast, light-weight, embeddable scripting language."
author = "Roberto Ierusalimschy, Waldemar Celes, Luiz Henrique de Figueiredo"
7 changes: 4 additions & 3 deletions doc/contents.html
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ <H1>

<P>
<SMALL>
Copyright &copy; 2015 Lua.org, PUC-Rio.
Copyright &copy; 2015&ndash;2018 Lua.org, PUC-Rio.
Freely available under the terms of the
<A HREF="http://www.lua.org/license.html">Lua license</A>.
</SMALL>
@@ -512,6 +512,7 @@ <H3><A NAME="auxlib">auxiliary library</A></H3>
<A HREF="manual.html#luaL_newmetatable">luaL_newmetatable</A><BR>
<A HREF="manual.html#luaL_newstate">luaL_newstate</A><BR>
<A HREF="manual.html#luaL_openlibs">luaL_openlibs</A><BR>
<A HREF="manual.html#luaL_opt">luaL_opt</A><BR>
<A HREF="manual.html#luaL_optinteger">luaL_optinteger</A><BR>
<A HREF="manual.html#luaL_optlstring">luaL_optlstring</A><BR>
<A HREF="manual.html#luaL_optnumber">luaL_optnumber</A><BR>
@@ -608,10 +609,10 @@ <H3><A NAME="constants">constants</A></H3>

<P CLASS="footer">
Last update:
Wed Jun 3 08:27:30 BRT 2015
Mon Jun 18 22:56:06 -03 2018
</P>
<!--
Last change: revised for Lua 5.3.1
Last change: revised for Lua 5.3.5
-->

</BODY>
Binary file modified doc/logo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion doc/lua.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.TH LUA 1 "$Date: 2014/12/10 15:55:45 $"
.\" $Id: lua.man,v 1.14 2016/10/17 15:43:50 lhf Exp $
.TH LUA 1 "$Date: 2016/10/17 15:43:50 $"
.SH NAME
lua \- Lua interpreter
.SH SYNOPSIS
38 changes: 20 additions & 18 deletions doc/lua.css
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ body {
line-height: 1.25 ;
margin: 16px auto ;
padding: 32px ;
border: solid #a0a0a0 1px ;
border: solid #ccc 1px ;
border-radius: 20px ;
max-width: 70em ;
width: 90% ;
@@ -92,6 +92,7 @@ table hr {
.footer {
color: gray ;
font-size: x-small ;
text-transform: lowercase ;
}

input[type=text] {
@@ -110,36 +111,29 @@ pre.session {
border-radius: 8px ;
}

td.gutter {
width: 4% ;
}

table.columns {
table {
border: none ;
border-spacing: 0 ;
border-collapse: collapse ;
}

table.columns td {
vertical-align: top ;
td {
padding: 0 ;
padding-bottom: 1em ;
text-align: justify ;
line-height: 1.25 ;
margin: 0 ;
}

p.logos a:link:hover, p.logos a:visited:hover {
background-color: inherit ;
td.gutter {
width: 4% ;
}

table.book {
border: none ;
border-spacing: 0 ;
border-collapse: collapse ;
table.columns td {
vertical-align: top ;
padding-bottom: 1em ;
text-align: justify ;
line-height: 1.25 ;
}

table.book td {
padding: 0 ;
vertical-align: top ;
}

@@ -157,3 +151,11 @@ table.book span {
display: block ;
margin-top: 0.25em ;
}

p.logos a:link:hover, p.logos a:visited:hover {
background-color: inherit ;
}

img {
background-color: white ;
}
Loading