diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-07-19 18:01:35 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-07-19 18:01:35 +0100 |
commit | 3f12892f1f4555f10c496bbfd059639b799d6512 (patch) | |
tree | 732da3b983d1580e90b7b1e8c9571c155db336b7 /lib/mauve | |
parent | eadb2e10670093ebd754d5041d8cce17bca10d4d (diff) |
Added extra flag to frozen? check.
Diffstat (limited to 'lib/mauve')
-rw-r--r-- | lib/mauve/mauve_thread.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mauve/mauve_thread.rb b/lib/mauve/mauve_thread.rb index ca537da..e635155 100644 --- a/lib/mauve/mauve_thread.rb +++ b/lib/mauve/mauve_thread.rb @@ -62,7 +62,7 @@ module Mauve end def frozen? - self.alive? and self.stop? + self.alive? and self.stop? and @frozen end def thaw |