From: Kenichi Handa Date: Sun, 26 Jul 1998 14:04:41 +0000 (+0000) Subject: (auto-mode-alist): Fix regular expression error for sh-mode. X-Git-Tag: emacs-20.3~248 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d45da3e19ccb8a08c07d16585f4a29809397647a;p=emacs.git (auto-mode-alist): Fix regular expression error for sh-mode. --- diff --git a/lisp/files.el b/lisp/files.el index fd5a3bf8875..4b700d58f26 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1221,9 +1221,9 @@ run `normal-mode' explicitly." ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode) ("\\.scm\\.[0-9]*\\'" . scheme-mode) ("\\.[ck]?sh\\'\\|\\.shar\\'\\|/\\.z?profile\\'" . sh-mode) - ("\\(/\\|\\`)\\.\\(bash_profile\\|z?login\\|bash_login\\|z?logout\\)\\'" . sh-mode) - ("\\(/\\|\\`)\\.\\(bash_logout\\|[kz]shrc\\|bashrc\\|t?cshrc\\|esrc\\)\\'" . sh-mode) - ("\\(/\\|\\`)\\.\\([kz]shenv\\|xinitrc\\|startxrc\\|xsession\\)\\'" . sh-mode) + ("\\(/\\|\\`\\)\\.\\(bash_profile\\|z?login\\|bash_login\\|z?logout\\)\\'" . sh-mode) + ("\\(/\\|\\`\\)\\.\\(bash_logout\\|[kz]shrc\\|bashrc\\|t?cshrc\\|esrc\\)\\'" . sh-mode) + ("\\(/\\|\\`\\)\\.\\([kz]shenv\\|xinitrc\\|startxrc\\|xsession\\)\\'" . sh-mode) ("\\.mm\\'" . nroff-mode) ("\\.me\\'" . nroff-mode) ("\\.ms\\'" . nroff-mode)