lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Sun, Oct 18, 2015 at 11:11:14AM +0200, Marc Balmer wrote:
> The Lua command line usually has readline support.  Would it be possible to use this in debug.debug(), too?  Or would that bloat liblua?
> 

Do you really need that?

  gares@birba:~$ readline-editor lua
  Lua 5.2.4  Copyright (C) 1994-2015 Lua.org, PUC-Rio
  > debug.debug()
  lua_debug> print "ciao"
  ciao

  -- here I press arrow up, and then enter

  lua_debug> print "ciao"
ciao
-- 
Enrico Tassi