From a7e67b37de6c7ec9384c18586935c8a57b7472b0 Mon Sep 17 00:00:00 2001 From: Peter Trine Date: Mon, 10 Mar 2014 00:36:50 -0400 Subject: [PATCH] Caused colons to behave like commas. --- speedread | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speedread b/speedread index 7a18ba8..2e48658 100755 --- a/speedread +++ b/speedread @@ -123,7 +123,7 @@ sub word_time { my $time = $wordtime; if ($word =~ /[\.\?]\W*$/) { $time = $fstoptime; - } elsif ($word =~ /[;,]\W*$/) { + } elsif ($word =~ /[:;,]\W*$/) { $time = $commatime; } elsif ($word =~ / /) { $time = $multitime;