change vi-caps-word-dfa.sml to regard newlines as final states, as with vi-word-dfa.sml in previous commit

This commit is contained in:
2025-12-27 09:35:32 +00:00
parent 1df0952f08
commit 5c5910f748
3 changed files with 90 additions and 23 deletions

View File

@@ -181,6 +181,9 @@ struct
currentState = alphaToPunct orelse currentState = punctToAlpha
orelse currentState = spaceToAlpha
orelse currentState = spaceToPunct
orelse currentState = newlineToNewline
orelse currentState = newlineToAlpha
orelse currentState = newlineToPunct
fun finish x = x
end)