From: Karl Heuer Date: Wed, 3 Aug 1994 02:17:57 +0000 (+0000) Subject: (auto-mode-alist): Fix typos in comments. X-Git-Tag: emacs-19.34~7425 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1bebba148e84743b789d3fc645e3d1c1c135824d;p=emacs.git (auto-mode-alist): Fix typos in comments. --- diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 097c0e45b5a..c8a4f184c48 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -42,10 +42,10 @@ ;;;###dont-autoload (setq auto-mode-alist ;; matches files - ;; - who's path contains /bin/, but not directories + ;; - whose path contains /bin/, but not directories (cons '("/bin/" . sh-or-other-mode) ;; - that have a suffix .sh or .shar (shell archive) - ;; - that contain ressources for the various shells + ;; - that contain resources for the various shells ;; - startup files for X11 (cons '("\\.sh$\\|\\.shar$\\|/\\.\\(profile\\|bash_profile\\|login\\|bash_login\\|logout\\|bash_logout\\|bashrc\\|t?cshrc\\|xinitrc\\|startxrc\\|xsession\\)$" . sh-mode) auto-mode-alist)))