vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit d3aa964ff9c98ac5bb7368a052680af1395f45c3
parent 82652aa48c5438a2a2bb564a5e9dcf9c98207e87
Author: Christian Hesse <mail@eworm.de>
Date:   Tue, 30 Jun 2020 18:13:09 +0200

build: define LUA_COMPAT_5_3

This is required to build with lua 5.4.x.

Diffstat:
Mconfigure | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure @@ -474,7 +474,7 @@ EOF test "$lua" = "yes" -a $CONFIG_LUA -ne 1 && fail "$0: cannot find liblua" if test $CONFIG_LUA -eq 1; then - CFLAGS_LUA="$CFLAGS_LUA -DLUA_COMPAT_5_1 -DLUA_COMPAT_5_2 -DLUA_COMPAT_ALL" + CFLAGS_LUA="$CFLAGS_LUA -DLUA_COMPAT_5_1 -DLUA_COMPAT_5_2 -DLUA_COMPAT_5_3 -DLUA_COMPAT_ALL" fi fi