From 050466552bf7eb8b7944aa52c93b45326ae14d7a Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Mon, 12 Oct 2020 16:11:32 +0200 Subject: [PATCH] Minor changes and https-ify links. --- COPYRIGHT | 6 +++--- README | 2 +- doc/contact.html | 4 ++-- doc/ext_ffi_api.html | 2 +- doc/ext_ffi_semantics.html | 4 ++-- doc/ext_ffi_tutorial.html | 4 ++-- doc/extensions.html | 8 ++++---- doc/faq.html | 22 +++++++++++----------- doc/install.html | 6 +++--- doc/luajit.html | 4 ++-- doc/running.html | 2 +- dynasm/dynasm.lua | 4 ++-- etc/luajit.1 | 6 +++--- etc/luajit.pc | 2 +- src/lib_base.c | 4 ++-- src/lj_alloc.c | 6 +++--- src/lua.h | 2 +- src/luajit.h | 6 +++--- 18 files changed, 47 insertions(+), 47 deletions(-) diff --git a/COPYRIGHT b/COPYRIGHT index 44144197..e2f2cef8 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,5 +1,5 @@ =============================================================================== -LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/ +LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/ Copyright (C) 2005-2020 Mike Pall. All rights reserved. @@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -[ MIT license: http://www.opensource.org/licenses/mit-license.php ] +[ MIT license: https://www.opensource.org/licenses/mit-license.php ] =============================================================================== [ LuaJIT includes code from Lua 5.1/5.2, which has this license statement: ] @@ -51,6 +51,6 @@ THE SOFTWARE. This is a version (aka dlmalloc) of malloc/free/realloc written by Doug Lea and released to the public domain, as explained at -http://creativecommons.org/licenses/publicdomain +https://creativecommons.org/licenses/publicdomain =============================================================================== diff --git a/README b/README index aa177ae2..c04d8b19 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ README for LuaJIT 2.0.5 LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. -Project Homepage: http://luajit.org/ +Project Homepage: https://luajit.org/ LuaJIT is Copyright (C) 2005-2020 Mike Pall. LuaJIT is free software, released under the MIT license. diff --git a/doc/contact.html b/doc/contact.html index b5e390a7..3940feed 100644 --- a/doc/contact.html +++ b/doc/contact.html @@ -55,11 +55,11 @@

If you want to report bugs, propose fixes or suggest enhancements, please use the -GitHub issue tracker. +» GitHub issue tracker.

Please send general questions to the -LuaJIT mailing list. +» LuaJIT mailing list.

You can also send any questions you have directly to me: diff --git a/doc/ext_ffi_api.html b/doc/ext_ffi_api.html index 9772aa5d..5683289a 100644 --- a/doc/ext_ffi_api.html +++ b/doc/ext_ffi_api.html @@ -253,7 +253,7 @@ contents of an __index table (if any) may be modified afterwards. The associated metatable automatically applies to all uses of this type, no matter how the objects are created or where they originate from. Note that pre-defined operations on types have -precedence (e.g. declared field names cannot be overriden). +precedence (e.g. declared field names cannot be overridden).

All standard Lua metamethods are implemented. These are called directly, diff --git a/doc/ext_ffi_semantics.html b/doc/ext_ffi_semantics.html index ce6313d7..c95407b7 100644 --- a/doc/ext_ffi_semantics.html +++ b/doc/ext_ffi_semantics.html @@ -668,7 +668,7 @@ through unions is explicitly detected and allowed. constructor. This is equivalent to ffi.new(ct, ...), unless a __new metamethod is defined. The __new metamethod is called with the ctype object -plus any other arguments passed to the contructor. Note that you have to +plus any other arguments passed to the constructor. Note that you have to use ffi.new inside of it, since calling ct(...) would cause infinite recursion. @@ -838,7 +838,7 @@ place of a type, you'd need to use ffi.typeof("int") instead.

The main use for parameterized types are libraries implementing abstract data types -(example), +(» example), similar to what can be achieved with C++ template metaprogramming. Another use case are derived types of anonymous structs, which avoids pollution of the global struct namespace. diff --git a/doc/ext_ffi_tutorial.html b/doc/ext_ffi_tutorial.html index ae376b1f..6ba76dc2 100644 --- a/doc/ext_ffi_tutorial.html +++ b/doc/ext_ffi_tutorial.html @@ -214,7 +214,7 @@ a fascinating best-selling game is left as an exercise for the reader.

Accessing the zlib Compression Library

The following code shows how to access the zlib compression library from Lua code. +href="https://zlib.net/">» zlib compression library from Lua code. We'll define two convenience wrapper functions that take a string and compress or uncompress it to another string:

@@ -297,7 +297,7 @@ comes pre-installed. Since ffi.load() automatically adds any missing standard prefixes/suffixes, we can simply load the "z" library. On Windows it's named zlib1.dll and you'll have to download it first from the -zlib site. The check for +» zlib site. The check for ffi.os makes sure we pass the right name to ffi.load().

diff --git a/doc/extensions.html b/doc/extensions.html index 0fc65330..9d37cf0e 100644 --- a/doc/extensions.html +++ b/doc/extensions.html @@ -71,9 +71,9 @@ td.excinterop {

LuaJIT is fully upwards-compatible with Lua 5.1. It supports all -standard Lua +» standard Lua library functions and the full set of -Lua/C API +» Lua/C API functions.

@@ -97,7 +97,7 @@ LuaJIT comes with several built-in extension modules:

bit.* — Bitwise operations

LuaJIT supports all bitwise operations as defined by -Lua BitOp: +» Lua BitOp:

 bit.tobit  bit.tohex  bit.bnot    bit.band bit.bor  bit.bxor
@@ -106,7 +106,7 @@ bit.lshift bit.rshift bit.arshift bit.rol  bit.ror  bit.bswap
 

This module is a LuaJIT built-in — you don't need to download or install Lua BitOp. The Lua BitOp site has full documentation for all -Lua BitOp API functions. +» Lua BitOp API functions.

Please make sure to require the module before using any of diff --git a/doc/faq.html b/doc/faq.html index 65b0d842..a7144670 100644 --- a/doc/faq.html +++ b/doc/faq.html @@ -59,16 +59,16 @@ dd { margin-left: 1.5em; }

Q: Where can I learn more about LuaJIT and Lua?
@@ -97,7 +97,7 @@ Q: My vararg functions fail after switching to LuaJIT!
LuaJIT is compatible to the Lua 5.1 language standard. It doesn't support the implicit arg parameter for old-style vararg functions from Lua 5.0.
Please convert your code to the -Lua 5.1 +» Lua 5.1 vararg syntax.
@@ -154,7 +154,7 @@ don't report a bug about it. Check the mode parameter for the In general, the only promising approach is to sandbox Lua code at the process level and not the VM level.
-More reading material at the » Lua Wiki and Wikipedia. +More reading material at the » Lua Wiki and » Wikipedia. diff --git a/doc/install.html b/doc/install.html index 60665360..85ca9913 100644 --- a/doc/install.html +++ b/doc/install.html @@ -236,7 +236,7 @@ Obviously the prefixes given during build and installation need to be the same.

Either install one of the open source SDKs (» MinGW or -Cygwin), which come with a modified +» Cygwin), which come with a modified GCC plus the required development headers. Or install Microsoft's Visual Studio (MSVC).

@@ -358,7 +358,7 @@ make HOST_CC="gcc -m32" CROSS=mips-linux- make HOST_CC="gcc -m32" CROSS=mipsel-linux-

-You can cross-compile for Android using the Android NDK. +You can cross-compile for Android using the » Android NDK. Please adapt the environment variables to match the install locations and the desired target platform. E.g. Android 4.1 corresponds to ABI level 16.

@@ -488,7 +488,7 @@ Make sure the jit library is loaded or the JIT compiler will not be activated.
  • The bit.* module for bitwise operations is already built-in. There's no need to statically link -Lua BitOp to your application.
  • +» Lua BitOp to your application.

    Hints for Distribution Maintainers

    diff --git a/doc/luajit.html b/doc/luajit.html index c71831bb..f99aa022 100644 --- a/doc/luajit.html +++ b/doc/luajit.html @@ -139,13 +139,13 @@ table.feature small {

    LuaJIT is a Just-In-Time Compiler (JIT) for the -Lua programming language. +» Lua programming language. Lua is a powerful, dynamic and light-weight programming language. It may be embedded or used as a general-purpose, stand-alone language.

    LuaJIT is Copyright © 2005-2020 Mike Pall, released under the -MIT open source license. +» MIT open source license.

    diff --git a/doc/running.html b/doc/running.html index a8c71af0..07fa0099 100644 --- a/doc/running.html +++ b/doc/running.html @@ -87,7 +87,7 @@ The luajit stand-alone executable is just a slightly modified version of the regular lua stand-alone executable. It supports the same basic options, too. luajit -h prints a short list of the available options. Please have a look at the -Lua manual +» Lua manual for details.

    diff --git a/dynasm/dynasm.lua b/dynasm/dynasm.lua index 5fda425b..e33a99be 100644 --- a/dynasm/dynasm.lua +++ b/dynasm/dynasm.lua @@ -14,7 +14,7 @@ local _info = { vernum = 10300, release = "2011-05-05", author = "Mike Pall", - url = "http://luajit.org/dynasm.html", + url = "https://luajit.org/dynasm.html", license = "MIT", copyright = [[ Copyright (C) 2005-2020 Mike Pall. All rights reserved. @@ -38,7 +38,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -[ MIT license: http://www.opensource.org/licenses/mit-license.php ] +[ MIT license: https://www.opensource.org/licenses/mit-license.php ] ]], } diff --git a/etc/luajit.1 b/etc/luajit.1 index 2071c155..82097094 100644 --- a/etc/luajit.1 +++ b/etc/luajit.1 @@ -6,7 +6,7 @@ luajit \- Just-In-Time Compiler for the Lua Language .B luajit [\fIoptions\fR]... [\fIscript\fR [\fIargs\fR]...] .SH "WEB SITE" -.IR http://luajit.org +.IR https://luajit.org .SH DESCRIPTION .PP This is the command-line program to run Lua programs with \fBLuaJIT\fR. @@ -80,9 +80,9 @@ Runs some nested loops and shows the resulting traces. .SH SEE ALSO .PP More details in the provided HTML docs or at: -.IR http://luajit.org +.IR https://luajit.org .br More about the Lua language can be found at: -.IR http://lua.org/docs.html +.IR https://lua.org/docs.html .PP lua(1) diff --git a/etc/luajit.pc b/etc/luajit.pc index 36840ab8..9bac3a8b 100644 --- a/etc/luajit.pc +++ b/etc/luajit.pc @@ -17,7 +17,7 @@ INSTALL_CMOD=${prefix}/${multilib}/lua/${abiver} Name: LuaJIT Description: Just-in-time compiler for Lua -URL: http://luajit.org +URL: https://luajit.org Version: ${version} Requires: Libs: -L${libdir} -l${libname} diff --git a/src/lib_base.c b/src/lib_base.c index 99f7b44a..f3388798 100644 --- a/src/lib_base.c +++ b/src/lib_base.c @@ -506,8 +506,8 @@ LJLIB_CF(print) lua_gettable(L, LUA_GLOBALSINDEX); tv = L->top-1; } - shortcut = (tvisfunc(tv) && funcV(tv)->c.ffid == FF_tostring) - && !gcrefu(basemt_it(G(L), LJ_TNUMX)); + shortcut = (tvisfunc(tv) && funcV(tv)->c.ffid == FF_tostring) && + !gcrefu(basemt_it(G(L), LJ_TNUMX)); for (i = 0; i < nargs; i++) { const char *str; size_t size; diff --git a/src/lj_alloc.c b/src/lj_alloc.c index dc64dca9..9adaa0e5 100644 --- a/src/lj_alloc.c +++ b/src/lj_alloc.c @@ -6,7 +6,7 @@ ** ** This is a version (aka dlmalloc) of malloc/free/realloc written by ** Doug Lea and released to the public domain, as explained at -** http://creativecommons.org/licenses/publicdomain. +** https://creativecommons.org/licenses/publicdomain. ** ** * Version pre-2.8.4 Wed Mar 29 19:46:29 2006 (dl at gee) ** @@ -16,8 +16,8 @@ ** If you want to use dlmalloc in another project, you should get ** the original from: ftp://gee.cs.oswego.edu/pub/misc/ ** For thread-safe derivatives, take a look at: -** - ptmalloc: http://www.malloc.de/ -** - nedmalloc: http://www.nedprod.com/programs/portable/nedmalloc/ +** - ptmalloc: https://www.malloc.de/ +** - nedmalloc: https://www.nedprod.com/programs/portable/nedmalloc/ */ #define lj_alloc_c diff --git a/src/lua.h b/src/lua.h index c83fd3bb..2bd683c2 100644 --- a/src/lua.h +++ b/src/lua.h @@ -1,7 +1,7 @@ /* ** $Id: lua.h,v 1.218.1.5 2008/08/06 13:30:12 roberto Exp $ ** Lua - An Extensible Extension Language -** Lua.org, PUC-Rio, Brazil (http://www.lua.org) +** Lua.org, PUC-Rio, Brazil (https://www.lua.org) ** See Copyright Notice at the end of this file */ diff --git a/src/luajit.h b/src/luajit.h index 5f5b3887..ea7118c4 100644 --- a/src/luajit.h +++ b/src/luajit.h @@ -1,5 +1,5 @@ /* -** LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/ +** LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/ ** ** Copyright (C) 2005-2020 Mike Pall. All rights reserved. ** @@ -22,7 +22,7 @@ ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ** -** [ MIT license: http://www.opensource.org/licenses/mit-license.php ] +** [ MIT license: https://www.opensource.org/licenses/mit-license.php ] */ #ifndef _LUAJIT_H @@ -34,7 +34,7 @@ #define LUAJIT_VERSION_NUM 20005 /* Version 2.0.5 = 02.00.05. */ #define LUAJIT_VERSION_SYM luaJIT_version_2_0_5 #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2020 Mike Pall" -#define LUAJIT_URL "http://luajit.org/" +#define LUAJIT_URL "https://luajit.org/" /* Modes for luaJIT_setmode. */ #define LUAJIT_MODE_MASK 0x00ff