URI: 
       tSmall fix - transliterate - Transliteration engine
  HTML git clone git://lumidify.org/transliterate.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit dc9b03daa97ddcd314ec79fe117e7c1c9cce3168
   DIR parent 9420d98d90eabd8ad718a74e7e66bde7f5d221c6
  HTML Author: lumidify <nobody@lumidify.org>
       Date:   Wed,  8 Apr 2020 09:36:27 +0200
       
       Small fix
       
       Diffstat:
         M transliterate.pl                    |       7 +++----
       
       1 file changed, 3 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/transliterate.pl b/transliterate.pl
       t@@ -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;
        }