See: http://debbugs.gnu.org/12267
+2012-08-27 Leo Liu <sdl.web@gmail.com>
+
+ * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
+
2012-08-24 Chong Yidong <cyd@gnu.org>
* Version 24.2 released.
:group 'sh-indentation)
(put 'sh-basic-offset 'safe-local-variable 'integerp)
-(defcustom sh-indent-comment nil
+(defcustom sh-indent-comment t
"How a comment line is to be indented.
nil means leave it as it is;
t means indent it as a normal line, aligning it to previous non-blank
(const :tag "Indent as a normal line." t)
(integer :menu-tag "Indent to this col (0 means first col)."
:tag "Indent to column number.") )
+ :version "24.3"
:group 'sh-indentation)