From 114422dfbb6c87c5beb7d78c52f1bffd38c3c356 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 24 Oct 2014 10:50:02 -0400 Subject: don't reuse this variable name --- fractal.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fractal.jl b/fractal.jl index e46b8ba..dce606b 100644 --- a/fractal.jl +++ b/fractal.jl @@ -20,14 +20,14 @@ end if (!isinteractive()) # Create a condition object - c = Condition() + cv = Condition() # Get the main window (A Tk toplevel object) win = toplevel(imgc) # Notify the condition object when the window closes - bind(win, "", e->notify(c)) + bind(win, "", e->notify(cv)) # Wait for the notification before proceeding ... - wait(c) + wait(cv) end -- cgit v1.2.3-54-g00ecf