From f013bb911962559fc4492950fd4f6ee5879650e8 Mon Sep 17 00:00:00 2001 From: morioka Date: Sun, 20 Dec 1998 11:25:20 +0000 Subject: [PATCH] Avoid error when cyrillic.el is not found. --- mcs-om.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mcs-om.el b/mcs-om.el index 433262d..820ee9e 100644 --- a/mcs-om.el +++ b/mcs-om.el @@ -103,7 +103,9 @@ ;;; @ to coding-system ;;; -(require 'cyrillic) +(condition-case nil + (require 'cyrillic) + (error nil)) (defvar mime-charset-coding-system-alist '((iso-8859-1 . *ctext*) -- 1.7.10.4