diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-05-10 05:36:01 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-05-10 05:36:01 +0000 |
commit | 85e80638d44bf662837118114bc1c143f6df7c0e (patch) | |
tree | 3ffd4d629a3fb8f2fa133237ecfc7c3c432850c5 | |
parent | f71c4346fed97d57f253b0d3b16d6f1a14b799d8 (diff) | |
download | emacs-85e80638d44bf662837118114bc1c143f6df7c0e.tar.gz |
(auto-mode-alist): Shuffle a few elements,
-rw-r--r-- | lisp/files.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/files.el b/lisp/files.el index c788fc07be6..2a58cb5536b 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1058,11 +1058,10 @@ run `normal-mode' explicitly." ("\\.for\\'" . fortran-mode) ("\\.p\\'" . pascal-mode) ("\\.pas\\'" . pascal-mode) - ("\\.mss\\'" . scribe-mode) ("\\.ad[abs]\\'" . ada-mode) - ("\\.icn\\'" . icon-mode) ("\\.pl\\'" . perl-mode) ("\\.pm\\'" . perl-mode) + ("\\.s?html?\\'" . html-mode) ("\\.cc\\'" . c++-mode) ("\\.hh\\'" . c++-mode) ("\\.hpp\\'" . c++-mode) @@ -1075,7 +1074,6 @@ run `normal-mode' explicitly." ("\\.h\\+\\+\\'" . c++-mode) ("\\.m\\'" . objc-mode) ("\\.java\\'" . java-mode) - ("\\.sim\\'" . simula-mode) ("\\.mk\\'" . makefile-mode) ("\\(M\\|m\\|GNUm\\)akefile\\(.in\\)?\\'" . makefile-mode) ;;; Less common extensions come here @@ -1113,6 +1111,9 @@ run `normal-mode' explicitly." ("\\.exp\\'" . tcl-mode) ("\\.itcl\\'" . tcl-mode) ("\\.itk\\'" . tcl-mode) + ("\\.icn\\'" . icon-mode) + ("\\.sim\\'" . simula-mode) + ("\\.mss\\'" . scribe-mode) ("\\.f90\\'" . f90-mode) ("\\.lsp\\'" . lisp-mode) ("\\.awk\\'" . awk-mode) @@ -1133,7 +1134,6 @@ run `normal-mode' explicitly." ("\\.sgml?\\'" . sgml-mode) ("\\.dtd\\'" . sgml-mode) ("\\.ds\\(ss\\)?l\\'" . dsssl-mode) - ("\\.s?html?\\'" . html-mode) ;; .emacs following a directory delimiter ;; in either Unix or VMS syntax. ("[]>:/]\\..*emacs\\'" . emacs-lisp-mode) |