fix bogus test for regex match
diff --git a/Lib/mhlib.py b/Lib/mhlib.py
index dd39581..e53ed9c 100644
--- a/Lib/mhlib.py
+++ b/Lib/mhlib.py
@@ -736,7 +736,7 @@
 	while 1:
 		line = f.readline()
 		if not line: break
-		if prog.match(line) == len(line):
+		if prog.match(line) >= 0:
 			text = line[len(key)+1:]
 			while 1:
 				line = f.readline()