diff options
-rw-r--r-- | tissue/issue.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tissue/issue.scm b/tissue/issue.scm index 262e327..7a5b6ff 100644 --- a/tissue/issue.scm +++ b/tissue/issue.scm @@ -130,7 +130,7 @@ strings, and return them as a list." ;; checkbox has any character other ;; than space in it, the task is ;; completed. - ((string-match "\\* \\[(.)\\]" line) + ((string-match "^\\* \\[(.)\\]" line) => (lambda (m) (hashtable-update! result 'tasks 1+ 0) (unless (string=? (match:substring m 1) " ") |