[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108122: Change sh-indent-comment
From: |
Leo Liu |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108122: Change sh-indent-comment to t |
Date: |
Mon, 27 Aug 2012 18:51:17 +0800 |
User-agent: |
Bazaar (2.5.0) |
------------------------------------------------------------
revno: 108122
fixes bug: http://debbugs.gnu.org/12267
committer: Leo Liu <address@hidden>
branch nick: emacs-24
timestamp: Mon 2012-08-27 18:51:17 +0800
message:
Change sh-indent-comment to t
See: http://debbugs.gnu.org/12267
modified:
lisp/ChangeLog
lisp/progmodes/sh-script.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-08-24 09:53:39 +0000
+++ b/lisp/ChangeLog 2012-08-27 10:51:17 +0000
@@ -1,3 +1,7 @@
+2012-08-27 Leo Liu <address@hidden>
+
+ * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
+
2012-08-24 Chong Yidong <address@hidden>
* Version 24.2 released.
=== modified file 'lisp/progmodes/sh-script.el'
--- a/lisp/progmodes/sh-script.el 2012-07-09 13:54:50 +0000
+++ b/lisp/progmodes/sh-script.el 2012-08-27 10:51:17 +0000
@@ -1190,7 +1190,7 @@
: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
@@ -1201,6 +1201,7 @@
(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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108122: Change sh-indent-comment to t,
Leo Liu <=