10 lines
267 B
Plaintext
10 lines
267 B
Plaintext
;; -*-emacs-lisp-*-
|
|
;;
|
|
;; Emacs startup file for the Debian GNU/Linux wt-mode package
|
|
;;
|
|
|
|
;; Set up to autoload
|
|
(autoload 'wt-mode "wt-mode" "Major mode for editing Webtester test scripts" t)
|
|
(setq auto-mode-alist
|
|
(cons '("\\.wt\\'" . wt-mode) auto-mode-alist))
|