]> git.eshelyaron.com Git - emacs.git/commitdiff
(auto-mode-alist): Fix typos in comments.
authorKarl Heuer <kwzh@gnu.org>
Wed, 3 Aug 1994 02:17:57 +0000 (02:17 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 3 Aug 1994 02:17:57 +0000 (02:17 +0000)
lisp/progmodes/sh-script.el

index 097c0e45b5a677add317392540ecef8c816673a4..c8a4f184c48b4c997bd073b3948a387b1ac774a7 100644 (file)
 ;;;###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)))