summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2014-03-05 22:41:45 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2014-03-05 22:41:45 +0900
commit65ae6cabb594b474d4cec4452939d0659711f9c4 (patch)
treeeea2085459013cce3cf4ee1fe517ee91f15bc1d3
parent86a66da04d7a8911c1b4dffb12a7c1cd066a88d9 (diff)
Rename variables
-rwxr-xr-xfzf8
1 files changed, 4 insertions, 4 deletions
diff --git a/fzf b/fzf
index 1c34063c..5426e53d 100755
--- a/fzf
+++ b/fzf
@@ -82,7 +82,6 @@ class FZF
@mouse = true
@filter = nil
@pending = nil
- @mutex = Mutex.new
argv =
if opts = ENV['FZF_DEFAULT_OPTS']
@@ -130,6 +129,7 @@ class FZF
@source = source.clone
@mtx = Mutex.new
+ @rmtx = Mutex.new
@cv = ConditionVariable.new
@events = {}
@new = []
@@ -722,7 +722,7 @@ class FZF
Thread.new do
begin
while blk = @queue.shift
- @mutex.synchronize do
+ @rmtx.synchronize do
blk.call
refresh
end
@@ -780,7 +780,7 @@ class FZF
end
def getch_nb
- @mutex.synchronize { C.getch }
+ @rmtx.synchronize { C.getch }
end
def getch
@@ -875,7 +875,7 @@ class FZF
case ch = getch
when C::KEY_MOUSE
- if m = @mutex.synchronize { C.getmouse }
+ if m = C.getmouse
st = m.bstate
if test_mouse(st, C::BUTTON1_PRESSED, C::BUTTON1_RELEASED)
if m.y == cursor_y