Fix existing typo'd line in reminders file.

This commit is contained in:
Dianne Skoll
2023-12-16 13:25:30 -05:00
parent 2e80417f53
commit e7ed69287b

View File

@@ -312,6 +312,10 @@ proc is_warning_header { line } {
if {"$line" == "$h"} {
return 1
}
# Ignore prior typo line too
if {"$line" == "# Lines staring with REM TAG TKTAGnnn ... were created by tkremind"} {
return 1
}
}
return 0
}