1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

interpreter-mode-alist: Add modes for awk, gawk, and scm scripts.

This commit is contained in:
Noah Friedman 1994-02-17 05:52:56 +00:00
parent 23e4c8be12
commit 8db739de39

View file

@ -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).