about summary refs log tree commit diff
path: root/users/tazjin/russian/words.el
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-24T13·55+0300
committerVincent Ambo <mail@tazj.in>2021-11-28T14·14+0300
commit48290298ad04d5b794671340bd5bf3bd5383d4fa (patch)
tree2a50786b76c771c9088be6abc4020bf4fcfb8b08 /users/tazjin/russian/words.el
parent104f002a07360dc9340d15dfb6b2d044fd043754 (diff)
feat(tazjin/russian): Add macro to populate word table r/3103
Adds a stupid macro that populates a 'russian-words' hash table in
which merged definitions of words are available.

Change-Id: Ide7825577ba26d63ff564e54601541f39ab5a1a6
Diffstat (limited to '')
-rw-r--r--users/tazjin/russian/words.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/users/tazjin/russian/words.el b/users/tazjin/russian/words.el
index 46276cdd0a..f2b51ba712 100644
--- a/users/tazjin/russian/words.el
+++ b/users/tazjin/russian/words.el
@@ -4,7 +4,10 @@
 ;; translations :: '(translation ...)
 ;; roots :: '(root ...)
 
-'( ;; 1-50
+(require 'russian-defs)
+
+(define-russian-words
+  ;; 1-50
   ("и" ("and" "though"))
   ("в" ("in" "at"))
   ("не" ("not"))
@@ -412,3 +415,6 @@
   ("оставить" ("to leave" "to abandon"))
   ("войти" ("to enter" "to come in") nil ("-й-"))
   ("длинный" ("long")))
+
+
+(provide 'russian-words)