/etc/emacs/site-start.d/50gnu-smalltalk-el.el is in gnu-smalltalk-el 3.2.4-2.
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 16 17 18 19 20 21 22 23 24 25 | ;; Autoload file for smalltalk-mode
;; duplicate zip files' setup for star files or fall back on
;; archive-mode, which scans file contents to determine type so is
;; safe to use
(push (cons "\\.star\\'"
(catch 'archive-mode
(dolist (mode-assoc auto-mode-alist 'archive-mode)
(and (string-match (car mode-assoc) "Starfile.zip")
(functionp (cdr mode-assoc))
(throw 'archive-mode (cdr mode-assoc))))))
auto-mode-alist)
(push '("\\.st\\'" . smalltalk-mode) auto-mode-alist)
(push "\\.star\\'" inhibit-first-line-modes-regexps)
(autoload 'smalltalk-mode "smalltalk-mode" "" t)
(autoload 'gst-mode "gst-mode" "" t)
(debian-pkg-add-load-path-item
(concat "/usr/share/"
(symbol-name debian-emacs-flavor)
"/site-lisp/gnu-smalltalk-el")
)
|