Fix (require 'utf7) order for Mule-UCS.
Add coding: comment.
+2009-08-01 TAKAHASHI Kaoru <kaoru@kaisei.org>
+
+ * test-utf7.el (toplevel): Use `fboundp' instead of `boundp'.
+ Fix (require 'utf7) order for Mule-UCS.
+ Add coding: comment.
+
2008-02-19 TAKAHASHI Kaoru <kaoru@kaisei.org>
* test-wl-util.el (test-wl-unique-id-by-user): New testcase.
+;; -*- coding: iso-2022-jp -*-
(require 'lunit)
-(require 'utf7)
-;; Emacs 21.3.50 or later
-(if (boundp 'utf-translate-cjk-mode)
- (utf-translate-cjk-mode 1)
- ;; Use Mule-UCS if installed
+;; Emacs 21
+(unless (and (fboundp 'find-coding-system) (find-coding-system 'utf-16))
(ignore-errors (require 'un-define)))
+(require 'utf7)
+
+;; Emacs 21.3.50 to 22
+(when (fboundp 'utf-translate-cjk-mode)
+ (utf-translate-cjk-mode 1))
(luna-define-class test-utf7 (lunit-test-case))