Mercurial > hg > xemacs-beta
comparison lisp/files.el @ 353:3b3709405255 r21-1-6
Import from CVS: tag r21-1-6
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:55:33 +0200 |
parents | 8bec6624d99b |
children | 182f72e8cd0d |
comparison
equal
deleted
inserted
replaced
352:e7288c5461ae | 353:3b3709405255 |
---|---|
1240 ("^#!.*sh\\b" . sh-mode) | 1240 ("^#!.*sh\\b" . sh-mode) |
1241 ("perl" . perl-mode) | 1241 ("perl" . perl-mode) |
1242 ("python" . python-mode) | 1242 ("python" . python-mode) |
1243 ("awk\\b" . awk-mode) | 1243 ("awk\\b" . awk-mode) |
1244 ("rexx" . rexx-mode) | 1244 ("rexx" . rexx-mode) |
1245 ("scm" . scheme-mode) | 1245 ("scm\\|guile" . scheme-mode) |
1246 ("emacs" . emacs-lisp-mode) | |
1247 ("make" . makefile-mode) | |
1246 ("^:" . sh-mode)) | 1248 ("^:" . sh-mode)) |
1247 "Alist mapping interpreter names to major modes. | 1249 "Alist mapping interpreter names to major modes. |
1248 This alist is used to guess the major mode of a file based on the | 1250 This alist is used to guess the major mode of a file based on the |
1249 contents of the first line. This line often contains something like: | 1251 contents of the first line. This line often contains something like: |
1250 #!/bin/sh | 1252 #!/bin/sh |