summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
authorNoah Friedman <friedman@splode.com>1994-02-17 05:52:56 +0000
committerNoah Friedman <friedman@splode.com>1994-02-17 05:52:56 +0000
commit8db739de396b88ce42bd7c249a511a94f8d716c7 (patch)
treebfbe761bdc6c1184def89174f0e73ac38243bbbc /lisp/files.el
parent23e4c8be122dfe824841b9be794facc4e2d3a22a (diff)
downloademacs-8db739de396b88ce42bd7c249a511a94f8d716c7.tar.gz
interpreter-mode-alist: Add modes for awk, gawk, and scm scripts.
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 5673aeac8b5..16ba5280be9 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -845,7 +845,10 @@ again for another match.")
("wish" . tcl-mode)
("shell" . tcl-mode)
("form" . tcl-mode)
- ("tcl" . tcl-mode))
+ ("tcl" . tcl-mode)
+ ("awk" . awk-mode)
+ ("gawk" . awk-mode)
+ ("scm" . scheme-mode))
"Alist mapping interpreter names to major modes.
This alist applies to files whose first line starts with `#!'.
Each element looks like (INTERPRETER . MODE).