transliterate

Transliteration engine
git clone git://lumidify.org/transliterate.git
Log | Files | Refs | README | LICENSE

commit dc9b03daa97ddcd314ec79fe117e7c1c9cce3168
parent 9420d98d90eabd8ad718a74e7e66bde7f5d221c6
Author: lumidify <nobody@lumidify.org>
Date:   Wed,  8 Apr 2020 09:36:27 +0200

Small fix

Diffstat:
Mtransliterate.pl | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/transliterate.pl b/transliterate.pl @@ -245,10 +245,9 @@ sub prompt_unknown_word { die "Processing stopped at line $cur_lineno"; } if (!$action) { - # This action isn't actually handled - it doesn't make much sense, - # but at least nothing breaks when the window is closed without - # selecting an action - $action = ["ignore", "once", $word]; + # This action isn't explicitly handled, but at least nothing + # breaks when the window is closed without selecting an action + $action = ["dummy"]; } return $action; }