(dump-94x94-ccs-to-ucs-table): Use `encode-char' with `defined-only'
[chise/tomoyo-tools.git] / TOMOYO-CFG
1 ;;; -*-Emacs-Lisp-*-
2
3 ;; TOMOYO-CFG: installation setting about TOMOYO.
4
5 ;;; Code:
6
7 (add-to-list 'load-path (expand-file-name "."))
8
9 (condition-case nil
10     (require 'install)
11   (error (error "Please install APEL.")))
12
13
14 ;;; @ Please specify prefix of install directory.
15 ;;;
16
17 ;; Please specify TOMOYO prefix [optional]
18 (setq TOMOYO_PREFIX "tomoyo-tools")
19
20
21 \f
22
23 ;;; @ optional settings
24 ;;;
25
26 (defvar PACKAGEDIR
27   (if (boundp 'early-packages)
28       (let ((dirs (append (if early-package-load-path
29                               early-packages)
30                           (if late-package-load-path
31                               late-packages)
32                           (if last-package-load-path
33                               last-packages)))
34             dir)
35         (while (not (file-exists-p
36                      (setq dir (car dirs))))
37           (setq dirs (cdr dirs)))
38         dir)))
39
40 ;;; TOMOYO-CFG ends here