Blame SPECS/autoconf-init.el
|
Packit Service |
1f9fce |
;; Activate autoconf-mode
|
|
Packit Service |
1f9fce |
|
|
Packit Service |
1f9fce |
;; Uncomment the following code if you feel that autoconf-mode.el does better
|
|
Packit Service |
1f9fce |
;; job than Emacs's default autoconf.el.
|
|
Packit Service |
1f9fce |
|
|
Packit Service |
1f9fce |
;; (autoload 'autoconf-mode "autoconf-mode"
|
|
Packit Service |
1f9fce |
;; "Major mode for editing autoconf files." t)
|
|
Packit Service |
1f9fce |
;; (setq auto-mode-alist
|
|
Packit Service |
1f9fce |
;; (cons '("\.ac\'\|configure\.in\'" . autoconf-mode)
|
|
Packit Service |
1f9fce |
;; auto-mode-alist))
|
|
Packit Service |
1f9fce |
|
|
Packit Service |
1f9fce |
;; Activate autotest-mode
|
|
Packit Service |
1f9fce |
(autoload 'autotest-mode "autotest-mode"
|
|
Packit Service |
1f9fce |
"Major mode for editing autotest files." t)
|
|
Packit Service |
1f9fce |
(setq auto-mode-alist
|
|
Packit Service |
1f9fce |
(cons '("\.at\'" . autotest-mode) auto-mode-alist))
|