1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00

Temporarily disable the new readline mode

git-svn-id: file:///home/svn/framework3/trunk@5520 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
HD Moore 2008-06-05 00:13:33 +00:00
parent b844a31fcc
commit e55a9d29a4

View File

@ -75,6 +75,14 @@ begin
#
def pgets
if(true)
output.prompting
line = Readline.readline(prompt, true)
HISTORY.pop if line.empty?
return line
end
output.prompting
rdr,wtr = ::IO.pipe