2016-06-08 09:07:48 +00:00
|
|
|
;; -*-emacs-lisp-*-
|
|
|
|
;;
|
|
|
|
;; Emacs startup file for the Debian GNU/Linux wt-mode package
|
|
|
|
;;
|
|
|
|
|
|
|
|
;; Set up to autoload
|
2017-06-30 08:56:11 +00:00
|
|
|
(add-to-list 'load-path "@emacsdir@")
|
2016-06-08 09:07:48 +00:00
|
|
|
(autoload 'wt-mode "wt-mode" "Major mode for editing Webtester test scripts" t)
|
|
|
|
(setq auto-mode-alist
|
|
|
|
(cons '("\\.wt\\'" . wt-mode) auto-mode-alist))
|