From: Richard M. Stallman Date: Fri, 5 Jan 1996 02:36:06 +0000 (+0000) Subject: (interpreter-mode-alist, auto-mode-alist): Don't alter this here. X-Git-Tag: emacs-19.34~1834 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6cfd21c904246a2ddbbcdfbef223ce0ef414a6a1;p=emacs.git (interpreter-mode-alist, auto-mode-alist): Don't alter this here. --- diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 8b03187f2e1..4448ca5ee5c 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -45,39 +45,6 @@ (require 'executable) - - -;; Autoload cookie deleted here because it made loaddefs.el fail to load. -;; -rms -(or (assoc "sh" interpreter-mode-alist) - (setq auto-mode-alist - ;; matches files - ;; - that have a suffix .sh, .csh or .shar (shell archive) - ;; - that contain resources for the various shells - ;; - startup files for X11 - (cons '("\\.c?sh\\'\\|\\.shar\\'\\|/\\.\\(z?profile\\|bash_profile\\|z?login\\|bash_login\\|z?logout\\|bash_logout\\|[kz]shrc\\|bashrc\\|t?cshrc\\|esrc\\|rcrc\\|[kz]shenv\\|xinitrc\\|startxrc\\|xsession\\)\\'" . sh-mode) - auto-mode-alist) - interpreter-mode-alist - (nconc '(("ash" . sh-mode) - ("bash" . sh-mode) - ("csh" . sh-mode) - ("dtksh" . sh-mode) - ("es" . sh-mode) - ("itcsh" . sh-mode) - ("jsh" . sh-mode) - ("ksh" . sh-mode) - ("oash" . sh-mode) - ("pdksh" . sh-mode) - ("rc" . sh-mode) - ("sh" . sh-mode) - ("sh5" . sh-mode) - ("tcsh" . sh-mode) - ("wksh" . sh-mode) - ("wsh" . sh-mode) - ("zsh" . sh-mode)) - interpreter-mode-alist))) - - (defvar sh-ancestor-alist '((ash . sh) (bash . jsh)