From 5777cf60fa8336f165559d749d3a700c696ba20e Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 18 Oct 2017 16:02:56 +0200 Subject: don't propagate '?' over 'x' --- notyet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notyet b/notyet index f74631f..3078f58 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(self.state) + self.state = state unless "xX?".index(self.state) children.each { |c| c.force(state) } end -- cgit 1.4.1