Compare commits

..

No commits in common. "e4833bdba9b2f7a3b73309c64a697bfa5c1d2952" and "38233ccda41d78390cd8d497fd37afb74f401f6d" have entirely different histories.

4 changed files with 2 additions and 7 deletions

View File

@ -30,6 +30,6 @@ func (b *Bait) throw(name string, args ...interface{}) {
b.Em.Emit(name, args...)
}
func (b *Bait) catch(name string, catcher func(...interface{})) {
func (b *Bait) catch(name string, catcher func(interface{})) {
b.Em.On(name, catcher)
}

View File

@ -184,10 +184,7 @@ input:
}
input = strings.TrimSpace(input)
if len(input) == 0 {
hooks.Em.Emit("command.exit", 0)
continue
}
if len(input) == 0 { continue }
if strings.HasSuffix(input, "\\") {
for {

1
rl.go
View File

@ -22,7 +22,6 @@ func NewLineReader(prompt string) *LineReader {
}
func (lr *LineReader) Read() (string, error) {
hooks.Em.Emit("command.precmd", nil)
return readline.String(lr.Prompt)
}

View File

@ -31,7 +31,6 @@ func RunInput(input string) {
continue
}
}
hooks.Em.Emit("command.preexec", input, cmdString)
// First try to load input, essentially compiling to bytecode
fn, err := l.LoadString(cmdString)