mirror of
https://github.com/lua/lua
synced 2025-03-05 21:41:25 +03:00
Removed use of 'rl_inhibit_completion' in 'lua.c'
Some old systems (e.g., Mac OS X 10.4) do not define 'rl_inhibit_completion', even when line history is available. Anyway, the user can configure this option externally, using '~/.inputrc'.
This commit is contained in:
parent
3d838f635c
commit
faaf7e481f
5
lua.c
5
lua.c
@ -1,5 +1,5 @@
|
||||
/*
|
||||
** $Id: lua.c,v 1.234 2018/03/06 20:30:17 roberto Exp roberto $
|
||||
** $Id: lua.c $
|
||||
** Lua stand-alone interpreter
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
@ -383,8 +383,7 @@ static int handle_luainit (lua_State *L) {
|
||||
|
||||
#include <readline/readline.h>
|
||||
#include <readline/history.h>
|
||||
#define lua_initreadline(L) \
|
||||
((void)L, rl_readline_name="lua", rl_inhibit_completion=1)
|
||||
#define lua_initreadline(L) ((void)L, rl_readline_name="lua")
|
||||
#define lua_readline(L,b,p) ((void)L, ((b)=readline(p)) != NULL)
|
||||
#define lua_saveline(L,line) ((void)L, add_history(line))
|
||||
#define lua_freeline(L,b) ((void)L, free(b))
|
||||
|
Loading…
x
Reference in New Issue
Block a user