diff options
| author | Richard M. Stallman | 2005-05-14 11:21:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-05-14 11:21:12 +0000 |
| commit | 32518913cd43920f149fe00cefeb1dfe17ba5af5 (patch) | |
| tree | 6eed9055b7ff637c4a02b1f432c04f257a6d277b | |
| parent | dd77d6f4d369f5fd2ef1afa688a82faba16e00f4 (diff) | |
| download | emacs-32518913cd43920f149fe00cefeb1dfe17ba5af5.tar.gz emacs-32518913cd43920f149fe00cefeb1dfe17ba5af5.zip | |
More doc usage fixes.
| -rw-r--r-- | lisp/progmodes/sh-script.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index f01da859c9e..7a647f97775 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el | |||
| @@ -1132,16 +1132,16 @@ does not affect the `else', `elif' or `fi' statements themselves." | |||
| 1132 | 1132 | ||
| 1133 | (defcustom sh-indent-for-do 0 | 1133 | (defcustom sh-indent-for-do 0 |
| 1134 | "*How much to indent a `do' statement. | 1134 | "*How much to indent a `do' statement. |
| 1135 | This is relative to the statement before the `do', i.e. the | 1135 | This is relative to the statement before the `do', typically a |
| 1136 | `while', `until' or `for' statement." | 1136 | `while', `until', `for', `repeat' or `select' statement." |
| 1137 | :type `(choice ,@ sh-number-or-symbol-list) | 1137 | :type `(choice ,@ sh-number-or-symbol-list) |
| 1138 | :group 'sh-indentation) | 1138 | :group 'sh-indentation) |
| 1139 | 1139 | ||
| 1140 | (defcustom sh-indent-after-do '+ | 1140 | (defcustom sh-indent-after-do '+ |
| 1141 | "*How much to indent a line after a `do' statement. | 1141 | "*How much to indent a line after a `do' statement. |
| 1142 | This is used when the `do' is the first word of the line. | 1142 | This is used when the `do' is the first word of the line. |
| 1143 | This is relative to the statement before the `do', e.g. a | 1143 | This is relative to the statement before the `do', typically a |
| 1144 | `while', `for', `repeat' or `select' statement." | 1144 | `while', `until', `for', `repeat' or `select' statement." |
| 1145 | :type `(choice ,@ sh-number-or-symbol-list) | 1145 | :type `(choice ,@ sh-number-or-symbol-list) |
| 1146 | :group 'sh-indentation) | 1146 | :group 'sh-indentation) |
| 1147 | 1147 | ||