diff options
author | Vincent Ambo <mail@tazj.in> | 2021-12-13T13·36+0300 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-12-13T13·36+0300 |
commit | 396e3a0d6883470e80939f86311c7dd6c042311a (patch) | |
tree | 9c829dfedc1f56faa0280bec9c14be66e6ce9e23 /users | |
parent | 53f8a04b3350b4d465bd0213e24b02c46b8658e1 (diff) |
fix(tazjin/russian): Minor Elisp fixes r/3213
Change-Id: I759182ccb49d7a72ca8a031c829608c9eee70277
Diffstat (limited to 'users')
-rw-r--r-- | users/tazjin/russian/russian.el | 6 | ||||
-rw-r--r-- | users/tazjin/russian/words.el | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/users/tazjin/russian/russian.el b/users/tazjin/russian/russian.el index 95af5b0e10ba..28f1addeaa04 100644 --- a/users/tazjin/russian/russian.el +++ b/users/tazjin/russian/russian.el @@ -21,9 +21,9 @@ "Merge two Russian word definitions together. If no previous definition exists, only the new one will be returned." (if (not previous) new - (assert (equal (russian-word-word previous) - (russian-word-word new)) - "different words passed into merge function") + (cl-assert (equal (russian-word-word previous) + (russian-word-word new)) + "different words passed into merge function") (make-russian-word :word (russian-word-word previous) :translations (-concat (russian-word-translations previous) (russian-word-translations new)) diff --git a/users/tazjin/russian/words.el b/users/tazjin/russian/words.el index a37a541b7dde..784e5bddde5e 100644 --- a/users/tazjin/russian/words.el +++ b/users/tazjin/russian/words.el @@ -4,7 +4,7 @@ ;; translations :: '(translation ...) ;; roots :: '(root ...) -(require 'russian-defs) +(require 'russian) (define-russian-words ;; 1-50 |