]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
authorAkim Demaille <akim@epita.fr>
Fri, 19 Oct 2001 16:02:37 +0000 (16:02 +0000)
committerAkim Demaille <akim@epita.fr>
Fri, 19 Oct 2001 16:02:37 +0000 (16:02 +0000)
comment, explain how to install automatic mode selection.
From Russ Allbery.

ChangeLog
lib/emacs/autoconf-mode.el
lib/emacs/autotest-mode.el

index a069ee6631d98d6e387c0e8e6ccadceeaa9a8566..f996fcd93826ae0f5c1ee7c7be6ceb9566c3d05e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-19  Akim Demaille  <akim@epita.fr>
+
+       * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
+       comment, explain how to install automatic mode selection.
+       From Russ Allbery.
+
 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
 
        * bin/autoreconf.in (autoreconf): Display the path to the
index b50a0015f5b9025f3ee322dd3c5a60ec1f339ae3..c168ea050192d1194b5d1a2069f6fc1ccd816566 100644 (file)
 ;; A major mode for editing autoconf input (like configure.in).
 ;; Derived from m4-mode.el by Andrew Csillag (drew@staff.prodigy.com)
 
+;;; Your should add the following to your Emacs configuration file:
+
+;;  (autoload 'autoconf-mode "autoconf-mode"
+;;            "Major mode for editing autoconf files." t)
+;;  (setq auto-mode-alist
+;;        (cons '("\\.ac\\'\\|configure\\.in\\'" . autoconf-mode)
+;;              auto-mode-alist))
+
 ;;; Code:
 
 ;;thank god for make-regexp.el!
index 05568c4e4db183cd5059407329975b0b4cbc8422..c8caa921aa26af2debc1d07b3717b601ec168594 100644 (file)
 ;; A major mode for editing autotest input (like testsuite.at).
 ;; Derived from autoconf-mode.el, by Martin Buchholz (martin@xemacs.org).
 
+;;; Your should add the following to your Emacs configuration file:
+
+;;   (autoload 'autotest-mode "autotest-mode"
+;;             "Major mode for editing autotest files." t)
+;;   (setq auto-mode-alist
+;;         (cons '("\\.at\\'" . autotest-mode) auto-mode-alist))
+
 ;;; Code:
 
 (defvar autotest-font-lock-keywords