From 396e3a0d6883470e80939f86311c7dd6c042311a Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 13 Dec 2021 16:36:19 +0300 Subject: fix(tazjin/russian): Minor Elisp fixes Change-Id: I759182ccb49d7a72ca8a031c829608c9eee70277 --- users/tazjin/russian/russian.el | 6 +++--- 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 -- cgit 1.4.1