aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2016-02-27 23:58:27 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2016-02-27 23:58:27 +0800
commitcec92f59405a99a1c71d4b2e055dff92b6bfa10a (patch)
tree2679f01024244ca96fe52150464d29019a699494 /cmd/geth
parent85865a51b63cdbeaabb76a3729f9b8361a2616d7 (diff)
downloadgo-tangerine-cec92f59405a99a1c71d4b2e055dff92b6bfa10a.tar
go-tangerine-cec92f59405a99a1c71d4b2e055dff92b6bfa10a.tar.gz
go-tangerine-cec92f59405a99a1c71d4b2e055dff92b6bfa10a.tar.bz2
go-tangerine-cec92f59405a99a1c71d4b2e055dff92b6bfa10a.tar.lz
go-tangerine-cec92f59405a99a1c71d4b2e055dff92b6bfa10a.tar.xz
go-tangerine-cec92f59405a99a1c71d4b2e055dff92b6bfa10a.tar.zst
go-tangerine-cec92f59405a99a1c71d4b2e055dff92b6bfa10a.zip
cmd/geth: removed multiline support
When attempting to paste very long lines of text the REPL goes completely fubar, never completing the paste. Removing the multiline support "fixes" this. Long lines of text are usually pasted when deploying contracts and as it stands right now makes creating new contracts from the REPL impossible.
Diffstat (limited to 'cmd/geth')
-rw-r--r--cmd/geth/js.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/geth/js.go b/cmd/geth/js.go
index e7e28b24b..a4b14d7b1 100644
--- a/cmd/geth/js.go
+++ b/cmd/geth/js.go
@@ -119,7 +119,6 @@ func newLightweightJSRE(docRoot string, client rpc.Client, datadir string, inter
lr.SetCtrlCAborts(true)
lr.SetWordCompleter(makeCompleter(js))
lr.SetTabCompletionStyle(liner.TabPrints)
- lr.SetMultiLineMode(true)
js.prompter = lr
js.atexit = func() {
js.withHistory(datadir, func(hist *os.File) { hist.Truncate(0); lr.WriteHistory(hist) })