File: mk-bdic

package info (click to toggle)
t-code 2%3A2.3.1-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,816 kB
  • sloc: lisp: 10,356; perl: 748; sh: 384; makefile: 138
file content (18 lines) | stat: -rw-r--r-- 548 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; -*-emacs-lisp-*-
(and (fboundp 'set-language-environment)
     (set-language-environment "Japanese"))
(setq load-path (cons "../lisp" load-path))
(let (tcode-init-file-name 
      set-auto-coding-function)
  (load "tc-pre-base")
  (provide 'tc-pre)
  (setq tcode-site-data-directory nil)
  (load "tc-setup.el")
  (setq tcode-data-directory ".")
  (load "tc")
  (message "making bushu dictionary...")
  (let (tcode-verbose-message)
    (tcode-bushu-init 999))
  (tcode-save-dictionaries)
  (message "making bushu dictionary...done"))
(kill-emacs)