summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-10-24 10:50:02 -0400
committerJesse Luehrs <doy@tozt.net>2014-10-24 10:50:02 -0400
commit114422dfbb6c87c5beb7d78c52f1bffd38c3c356 (patch)
tree19ea2196eb3e260bfa23cfa5b9f54bc07b999f62
parent1ed7867027f00b8ee9c264656a028a22350b5f62 (diff)
downloadjulia-fractals-114422dfbb6c87c5beb7d78c52f1bffd38c3c356.tar.gz
julia-fractals-114422dfbb6c87c5beb7d78c52f1bffd38c3c356.zip
don't reuse this variable name
-rw-r--r--fractal.jl6
1 files 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, "<Destroy>", e->notify(c))
+ bind(win, "<Destroy>", e->notify(cv))
# Wait for the notification before proceeding ...
- wait(c)
+ wait(cv)
end