From b2c0efe2df31b1025995d753207c660ff07bf7a4 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Tue, 1 Nov 2016 14:26:53 +0900 Subject: [PATCH] Imported Upstream version 5.2.3 Change-Id: I429a8c91e4847cbfedb9a4bc9c6eff134f4119f4 Signed-off-by: DongHun Kwak --- Makefile | 2 +- README | 2 +- doc/lua.css | 31 ++++++++++++++++++++++--------- doc/manual.css | 9 +++++---- doc/readme.html | 7 ++++--- src/Makefile | 2 +- src/lapi.c | 2 +- src/lapi.h | 2 +- src/lauxlib.c | 2 +- src/lauxlib.h | 2 +- src/lbaselib.c | 2 +- src/lbitlib.c | 5 +++-- src/lcode.c | 2 +- src/lcode.h | 2 +- src/lcorolib.c | 2 +- src/lctype.c | 2 +- src/lctype.h | 2 +- src/ldblib.c | 2 +- src/ldebug.c | 31 ++++++++++++++++++++++--------- src/ldebug.h | 2 +- src/ldo.c | 18 +++++++++++++----- src/ldo.h | 2 +- src/ldump.c | 2 +- src/lfunc.c | 2 +- src/lfunc.h | 2 +- src/lgc.c | 13 ++++++++++--- src/lgc.h | 2 +- src/linit.c | 2 +- src/liolib.c | 23 ++++++++++++----------- src/llex.c | 5 ++++- src/llex.h | 2 +- src/llimits.h | 2 +- src/lmathlib.c | 2 +- src/lmem.c | 2 +- src/lmem.h | 2 +- src/loadlib.c | 2 +- src/lobject.c | 2 +- src/lobject.h | 2 +- src/lopcodes.c | 2 +- src/lopcodes.h | 2 +- src/loslib.c | 2 +- src/lparser.c | 2 +- src/lparser.h | 2 +- src/lstate.c | 11 ++++++----- src/lstate.h | 2 +- src/lstring.c | 2 +- src/lstring.h | 2 +- src/lstrlib.c | 2 +- src/ltable.c | 2 +- src/ltable.h | 6 +++++- src/ltablib.c | 2 +- src/ltm.c | 2 +- src/ltm.h | 2 +- src/lua.c | 2 +- src/lua.h | 4 ++-- src/luac.c | 4 ++-- src/luaconf.h | 2 +- src/lualib.h | 2 +- src/lundump.c | 2 +- src/lundump.h | 2 +- src/lvm.c | 2 +- src/lvm.h | 2 +- src/lzio.c | 2 +- src/lzio.h | 2 +- 64 files changed, 161 insertions(+), 108 deletions(-) diff --git a/Makefile b/Makefile index bd9515f..d2c7db4 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ TO_MAN= lua.1 luac.1 # Lua version and release. V= 5.2 -R= $V.1 +R= $V.3 # Targets start here. all: $(PLAT) diff --git a/README b/README index 6e2aee6..49033ad 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -This is Lua 5.2.2, released on 21 Mar 2013. +This is Lua 5.2.3, released on 11 Nov 2013. For installation instructions, license details, and further information about Lua, see doc/readme.html. diff --git a/doc/lua.css b/doc/lua.css index 240e85e..3d2443a 100644 --- a/doc/lua.css +++ b/doc/lua.css @@ -1,30 +1,37 @@ +html { + background-color: #F8F8F8 ; +} + body { + border: solid #a0a0a0 1px ; + border-radius: 20px ; + padding: 26px ; + margin: 16px ; color: #000000 ; background-color: #FFFFFF ; font-family: Helvetica, Arial, sans-serif ; text-align: justify ; - margin-right: 30px ; - margin-left: 30px ; } h1, h2, h3, h4 { font-family: Verdana, Geneva, sans-serif ; font-weight: normal ; - font-style: italic ; + font-style: normal ; } h2 { padding-top: 0.4em ; padding-bottom: 0.4em ; - padding-left: 1em ; - padding-right: 1em ; - background-color: #E0E0FF ; + padding-left: 0.8em ; + padding-right: 0.8em ; + background-color: #D0D0FF ; border-radius: 8px ; + border: solid #a0a0a0 1px ; } h3 { padding-left: 0.5em ; - border-left: solid #E0E0FF 1em ; + border-left: solid #D0D0FF 1em ; } table h3 { @@ -45,7 +52,7 @@ a:visited { a:link:hover, a:visited:hover { color: #000080 ; - background-color: #E0E0FF ; + background-color: #D0D0FF ; } a:link:active, a:visited:active { @@ -57,17 +64,23 @@ hr { height: 1px ; color: #a0a0a0 ; background-color: #a0a0a0 ; + display: none ; +} + +table hr { + display: block ; } :target { background-color: #F8F8F8 ; padding: 8px ; border: solid #a0a0a0 2px ; + border-radius: 8px ; } .footer { color: gray ; - font-size: small ; + font-size: x-small ; } input[type=text] { diff --git a/doc/manual.css b/doc/manual.css index 269bd43..ca613cd 100644 --- a/doc/manual.css +++ b/doc/manual.css @@ -16,11 +16,12 @@ span.apii { } p+h1, ul+h1 { + font-style: normal ; padding-top: 0.4em ; padding-bottom: 0.4em ; - padding-left: 24px ; - margin-left: -24px ; - background-color: #E0E0FF ; + padding-left: 16px ; + margin-left: -16px ; + background-color: #D0D0FF ; border-radius: 8px ; + border: solid #000080 1px ; } - diff --git a/doc/readme.html b/doc/readme.html index 5b9e47e..8acec87 100644 --- a/doc/readme.html +++ b/doc/readme.html @@ -7,6 +7,7 @@