File: emacsen-startup

package info (click to toggle)
iiimecf 0.6-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 400 kB
  • ctags: 632
  • sloc: lisp: 6,406; sh: 115; makefile: 32
file content (18 lines) | stat: -rw-r--r-- 491 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;;; 51iiimecf.el --- Debian iiimecf startup file  -*-mode: emacs-lisp;-*-

;;; Code:

(let ((path (concat "/usr/share/" (symbol-name flavor) "/site-lisp/iiimecf")))
  (if (or (not (file-directory-p path))
	  (featurep 'xemacs)
	  (not (featurep 'mule)))
      ()
    (if (fboundp 'debian-pkg-add-load-path-item)
	(debian-pkg-add-load-path-item path)
      (setq load-path (cons path load-path)))
    (if (featurep 'un-define)
	(require 'iiimcf-sc))
    ;;
    ))

;;; 51iiimecf.el ends here