You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
457 B
11 lines
457 B
;; anthy-unicode-init.el
|
|
;;
|
|
(if (featurep 'xemacs)
|
|
(setq load-path (cons "/usr/share/xemacs/xemacs-packages/lisp/anthy-unicode" load-path))
|
|
(setq load-path (cons "/usr/share/emacs/site-lisp/anthy-unicode" load-path)))
|
|
(autoload 'anthy-unicode-leim-activate "anthy-unicode" nil t)
|
|
(register-input-method "japanese-anthy-unicode" "Japanese"
|
|
'anthy-unicode-leim-activate "[anthy-unicode]"
|
|
"Anthy Unicode Kana Kanji conversion system")
|
|
|