File: t-code.emacsen-startup

package info (click to toggle)
t-code 2%3A2.3.1-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,812 kB
  • sloc: lisp: 10,356; perl: 748; sh: 384; makefile: 138
file content (15 lines) | stat: -rw-r--r-- 450 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; 50t-code.el --- Debian t-code startup file  -*-mode: emacs-lisp;-*-

;;; Code:

(let ((lispdir (concat "/usr/share/" (symbol-name flavor) "/site-lisp/t-code")))
  (when (and (featurep 'mule) (file-exists-p (concat lispdir "/tc.elc")))
    (if (fboundp 'debian-pkg-add-load-path-item)
	(debian-pkg-add-load-path-item lispdir)
      (setq load-path (cons lispdir load-path)))
    ;;
    (require 'tc-setup)
    ;;
    ))

;;; 50t-code.el ends here