summaryrefslogtreecommitdiffstats
path: root/fractal.jl
diff options
context:
space:
mode:
Diffstat (limited to 'fractal.jl')
-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