1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Safe to append with #<< here after all.

This commit is contained in:
Shannon Skipper 2013-11-24 15:20:27 -08:00
parent 9d5a1415ac
commit 6ffc748683

View file

@ -114,7 +114,7 @@ Copyright (c) 2013 John Mair (banisterfiend)
-- --
} }
on :e, :exec=, "A line of code to execute in context before the session starts" do |input| on :e, :exec=, "A line of code to execute in context before the session starts" do |input|
exec_string + input + "\n" exec_string << input << "\n"
end end
on "no-pager", "Disable pager for long output" do on "no-pager", "Disable pager for long output" do