From: Davide Masserut Date: Wed, 6 Apr 2022 09:37:38 +0000 (+0200) Subject: Add .bashrc detection to sh-mode X-Git-Tag: emacs-29.0.90~1931^2~742 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e32dcc752723cd255622fde73a324bdcb1e90664;p=emacs.git Add .bashrc detection to sh-mode * lisp/progmodes/sh-script.el (sh-mode): Add .bashrc string-match (bug#54727). --- diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 8dc55621438..9151fd0a340 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -1549,7 +1549,7 @@ with your script for an edit-interpret-debug cycle." ;; Checks that use `buffer-file-name' follow. ((string-match "\\.m?spec\\'" buffer-file-name) "rpm") ((string-match "[.]sh\\>" buffer-file-name) "sh") - ((string-match "[.]bash\\>" buffer-file-name) "bash") + ((string-match "[.]bash\\(rc\\)?\\>" buffer-file-name) "bash") ((string-match "[.]ksh\\>" buffer-file-name) "ksh") ((string-match "[.]mkshrc\\>" buffer-file-name) "mksh") ((string-match "[.]t?csh\\(rc\\)?\\>" buffer-file-name) "csh")