File: cafeobj-mode.emacsen-startup

package info (click to toggle)
cafeobj 1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid
  • size: 19,900 kB
  • sloc: lisp: 85,055; sh: 659; makefile: 437; perl: 147
file content (11 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
;; -*-emacs-lisp-*-
;;
;; Emacs startup file, e.g.  /etc/emacs/site-start.d/50cafeobj-mode.el
;; for the Debian cafeobj-mode package

(if (not (file-exists-p "/usr/share/emacs/site-lisp/cafeobj-mode.el"))
    (message "cafeobj-mode removed but not purged, skipping setup")
  (autoload 'cafeobj-mode "cafeobj-mode" "CafeOBJ mode." t)
  (autoload 'cafeobj "cafeobj-mode" "Run CafeOBJ interpreter." t)
  (add-to-list 'auto-mode-alist '("\\.mod\\'" . cafeobj-mode))
  (add-to-list 'auto-mode-alist '("\\.cafe\\'" . cafeobj-mode)))