aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-10-24 07:18:52 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-10-24 07:18:52 +0800
commit0aeab5fd83acae44e63840bf5a20834e5b52ae78 (patch)
treeab35590828665c2d05fa32093ea04455ac239cf0
parent77878f76a935061cee82ae9c2a1bc64b192b592b (diff)
parent6b5d077c09e8ba8419dc2aef4320e01cdd8d9dd9 (diff)
downloadgo-tangerine-0aeab5fd83acae44e63840bf5a20834e5b52ae78.tar
go-tangerine-0aeab5fd83acae44e63840bf5a20834e5b52ae78.tar.gz
go-tangerine-0aeab5fd83acae44e63840bf5a20834e5b52ae78.tar.bz2
go-tangerine-0aeab5fd83acae44e63840bf5a20834e5b52ae78.tar.lz
go-tangerine-0aeab5fd83acae44e63840bf5a20834e5b52ae78.tar.xz
go-tangerine-0aeab5fd83acae44e63840bf5a20834e5b52ae78.tar.zst
go-tangerine-0aeab5fd83acae44e63840bf5a20834e5b52ae78.zip
Merge pull request #1929 from ethersphere/develop
fix console history, lines with leadning whitespace NOT included
-rw-r--r--cmd/geth/js.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/js.go b/cmd/geth/js.go
index 8ebb04bce..7f7f19d78 100644
--- a/cmd/geth/js.go
+++ b/cmd/geth/js.go
@@ -439,7 +439,7 @@ func (self *jsre) interactive() {
func mustLogInHistory(input string) bool {
return len(input) == 0 ||
passwordRegexp.MatchString(input) ||
- leadingSpace.MatchString(input)
+ !leadingSpace.MatchString(input)
}
func (self *jsre) withHistory(datadir string, op func(*os.File)) {