mirror of https://github.com/Hilbis/Hilbish
Compare commits
No commits in common. "e4833bdba9b2f7a3b73309c64a697bfa5c1d2952" and "4596159b8ffa61139f7e0f3d80e83d4593f819b6" have entirely different histories.
e4833bdba9
...
4596159b8f
|
@ -30,6 +30,6 @@ func (b *Bait) throw(name string, args ...interface{}) {
|
||||||
b.Em.Emit(name, args...)
|
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)
|
b.Em.On(name, catcher)
|
||||||
}
|
}
|
||||||
|
|
1
shell.go
1
shell.go
|
@ -31,7 +31,6 @@ func RunInput(input string) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
hooks.Em.Emit("command.preexec", input, cmdString)
|
|
||||||
|
|
||||||
// First try to load input, essentially compiling to bytecode
|
// First try to load input, essentially compiling to bytecode
|
||||||
fn, err := l.LoadString(cmdString)
|
fn, err := l.LoadString(cmdString)
|
||||||
|
|
Loading…
Reference in New Issue