diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2015-01-08 22:04:12 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2015-01-08 22:04:12 +0900 |
| commit | efec9acd6f655c7e63d6cda61486c961fdaed443 (patch) | |
| tree | 6b314e9c6a89b40f42e454e4924c354cc144b414 /src | |
| parent | 3ed86445e1906eb47679bd2c8a5ee1a01632c883 (diff) | |
| download | fzf-efec9acd6f655c7e63d6cda61486c961fdaed443.tar.gz | |
Fix missing mutex unlock
Diffstat (limited to 'src')
| -rw-r--r-- | src/terminal.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/terminal.go b/src/terminal.go index 32c84584..a442d347 100644 --- a/src/terminal.go +++ b/src/terminal.go @@ -434,6 +434,7 @@ func (t *Terminal) Loop() { } switch event.Type { case C.INVALID: + t.mutex.Unlock() continue case C.CTRL_A: t.cx = 0 |
