From 7d8950dcd845ed9744cd98bd424b07301222c139 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 18 Oct 2017 15:56:55 +0200 Subject: fix downpropagation of '?' --- notyet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notyet b/notyet index f6deca0..b713434 100755 --- a/notyet +++ b/notyet @@ -81,7 +81,7 @@ class Entry < Struct.new(:depth, :state, :desc, :file, :line, :children) end def force(state) - self.state = state unless "X?".index(state) + self.state = state unless "X?".index(self.state) children.each { |c| c.force(state) } end -- cgit 1.4.1