Mercurial > hg > xemacs-beta
comparison lisp/files.el @ 422:95016f13131a r21-2-19
Import from CVS: tag r21-2-19
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:25:01 +0200 |
parents | 697ef44129c6 |
children | 11054d720c21 |
comparison
equal
deleted
inserted
replaced
421:fff06e11db74 | 422:95016f13131a |
---|---|
1219 ("^#!.*sh\\b" . sh-mode) | 1219 ("^#!.*sh\\b" . sh-mode) |
1220 ("perl" . perl-mode) | 1220 ("perl" . perl-mode) |
1221 ("python" . python-mode) | 1221 ("python" . python-mode) |
1222 ("awk\\b" . awk-mode) | 1222 ("awk\\b" . awk-mode) |
1223 ("rexx" . rexx-mode) | 1223 ("rexx" . rexx-mode) |
1224 ("scm" . scheme-mode) | 1224 ("scm\\|guile" . scheme-mode) |
1225 ("emacs" . emacs-lisp-mode) | |
1226 ("make" . makefile-mode) | |
1225 ("^:" . sh-mode)) | 1227 ("^:" . sh-mode)) |
1226 "Alist mapping interpreter names to major modes. | 1228 "Alist mapping interpreter names to major modes. |
1227 This alist is used to guess the major mode of a file based on the | 1229 This alist is used to guess the major mode of a file based on the |
1228 contents of the first line. This line often contains something like: | 1230 contents of the first line. This line often contains something like: |
1229 #!/bin/sh | 1231 #!/bin/sh |