diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-12-19 20:28:26 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-12-19 20:28:26 +0000 |
commit | 600a5f71e6ccb20a5f74c41bdd0475d61066f94b (patch) | |
tree | 343d0b64d5d613bfa2b2650fd1fabd35b093079c /lisp | |
parent | ac138dc079114e857c5e5d41d08270a0909376e4 (diff) | |
download | emacs-600a5f71e6ccb20a5f74c41bdd0475d61066f94b.tar.gz |
(auto-mode-alist): Recognize .S and .asm extensions.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/files.el b/lisp/files.el index 11ed8883cb3..3d95901772e 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -918,6 +918,8 @@ run `normal-mode' explicitly." ("\\.texinfo\\'" . texinfo-mode) ("\\.texi\\'" . texinfo-mode) ("\\.s\\'" . asm-mode) + ("\\.S\\'" . asm-mode) + ("\\.asm\\'" . asm-mode) ("ChangeLog\\'" . change-log-mode) ("change.log\\'" . change-log-mode) ("changelo\\'" . change-log-mode) |