From: John Paul Wallington Date: Wed, 4 Feb 2004 08:21:48 +0000 (+0000) Subject: (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry. X-Git-Tag: ttn-vms-21-2-B4~7753 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=21575d922f27991249df011ad06195f5d9a962bd;p=emacs.git (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 95cd73fcc3f..0c13d536843 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2004-02-04 John Paul Wallington + + * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry. + 2004-02-03 Jan Dj,Ad(Brv * x-dnd.el: New file for drag and drop. diff --git a/lisp/files.el b/lisp/files.el index a2676176b86..3b178af029b 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1619,7 +1619,7 @@ in that case, this function acts as if `enable-local-variables' were t." ("\\.ltx\\'" . latex-mode) ("\\.dtx\\'" . doctex-mode) ("\\.el\\'" . emacs-lisp-mode) - ("\\.scm\\|\\.stk\\|\\.ss\\|\\.sch\\'" . scheme-mode) + ("\\.\\(scm\\|stk\\|ss\\|sch\\)\\'" . scheme-mode) ("\\.l\\'" . lisp-mode) ("\\.lisp\\'" . lisp-mode) ("\\.f\\'" . fortran-mode)