diff options
Diffstat (limited to 'users/tazjin/russian/russian.el')
-rw-r--r-- | users/tazjin/russian/russian.el | 6 |
1 files changed, 3 insertions, 3 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)) |