aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-05-10 09:13:04 +0000
committerRichard M. Stallman2005-05-10 09:13:04 +0000
commit3f0f48c040ce7767452d34462e7f0897ede70096 (patch)
tree55ff3eb12ce07294ca155d8b240274e02da6d7d6
parent4d9db685ef795001d85c5550bd36d993e0c9dde5 (diff)
downloademacs-3f0f48c040ce7767452d34462e7f0897ede70096.tar.gz
emacs-3f0f48c040ce7767452d34462e7f0897ede70096.zip
(sh-indent-for-do): Default to 0.
-rw-r--r--lisp/progmodes/sh-script.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index 55ea460e421..70172e22732 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -1126,7 +1126,7 @@ does not affect then else elif or fi statements themselves."
1126 :type `(choice ,@ sh-number-or-symbol-list ) 1126 :type `(choice ,@ sh-number-or-symbol-list )
1127 :group 'sh-indentation) 1127 :group 'sh-indentation)
1128 1128
1129(defcustom sh-indent-for-do '* 1129(defcustom sh-indent-for-do 0
1130 "*How much to indent a do statement. 1130 "*How much to indent a do statement.
1131This is relative to the statement before the do, i.e. the 1131This is relative to the statement before the do, i.e. the
1132while until or for statement." 1132while until or for statement."