diff options
| author | Stefan Monnier | 2007-06-12 16:33:39 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-06-12 16:33:39 +0000 |
| commit | 9450aaa02b37474995c4650a515710be962c4968 (patch) | |
| tree | 7da6c0e64a32d00a9b81b7a5bb07ce1ed248583e | |
| parent | e7053211d6a203c7f91782a15f669cf1e0276a3b (diff) | |
| download | emacs-9450aaa02b37474995c4650a515710be962c4968.tar.gz emacs-9450aaa02b37474995c4650a515710be962c4968.zip | |
(tab-always-indent): Docstring fix.
| -rw-r--r-- | lisp/indent.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/indent.el b/lisp/indent.el index 0b0588ab515..7a94963ff4d 100644 --- a/lisp/indent.el +++ b/lisp/indent.el | |||
| @@ -50,8 +50,8 @@ Don't rebind TAB unless you really need to.") | |||
| 50 | "*Controls the operation of the TAB key. | 50 | "*Controls the operation of the TAB key. |
| 51 | If t, hitting TAB always just indents the current line. | 51 | If t, hitting TAB always just indents the current line. |
| 52 | If nil, hitting TAB indents the current line if point is at the left margin | 52 | If nil, hitting TAB indents the current line if point is at the left margin |
| 53 | or in the line's indentation, otherwise it insert a \"real\" TAB character. | 53 | or in the line's indentation, otherwise it inserts a \"real\" TAB character. |
| 54 | Most programming language modes have their own variable to control this, | 54 | Some programming language modes have their own variable to control this, |
| 55 | e.g., `c-tab-always-indent', and do not respect this variable." | 55 | e.g., `c-tab-always-indent', and do not respect this variable." |
| 56 | :group 'indent | 56 | :group 'indent |
| 57 | :type '(choice (const nil) (const t) (const always))) | 57 | :type '(choice (const nil) (const t) (const always))) |