diff options
-rw-r--r-- | english-orthography.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/english-orthography.py b/english-orthography.py index b7572c3..b9a0ea6 100644 --- a/english-orthography.py +++ b/english-orthography.py @@ -41,7 +41,7 @@ def make_elisp_safe(pattern): .replace('|', '\\\\|') print(';; Generated from plover.system.english_stenotype\n') -print("(setq thogai-english-orthography-rules '(") +print("(defvar thogai-english-orthography-rules '(") for pattern, replacement in ORTHOGRAPHY_RULES: print(f'("{make_elisp_safe(pattern)}" . "{make_elisp_safe(replacement)}")') print('))') |