/etc/emacs/site-start.d/50t-code.el is in t-code 2:2.3.1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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
|