m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-14 06:13:47 -05:00

Fix missing mutex unlock

This commit is contained in:
Junegunn Choi
2015-01-08 22:04:12 +09:00
parent 3ed86445e1
commit efec9acd6f

View File

@@ -434,6 +434,7 @@ func (t *Terminal) Loop() {
} }
switch event.Type { switch event.Type {
case C.INVALID: case C.INVALID:
t.mutex.Unlock()
continue continue
case C.CTRL_A: case C.CTRL_A:
t.cx = 0 t.cx = 0