aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-06-12 16:33:39 +0000
committerStefan Monnier2007-06-12 16:33:39 +0000
commit9450aaa02b37474995c4650a515710be962c4968 (patch)
tree7da6c0e64a32d00a9b81b7a5bb07ce1ed248583e
parente7053211d6a203c7f91782a15f669cf1e0276a3b (diff)
downloademacs-9450aaa02b37474995c4650a515710be962c4968.tar.gz
emacs-9450aaa02b37474995c4650a515710be962c4968.zip
(tab-always-indent): Docstring fix.
-rw-r--r--lisp/indent.el4
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.
51If t, hitting TAB always just indents the current line. 51If t, hitting TAB always just indents the current line.
52If nil, hitting TAB indents the current line if point is at the left margin 52If nil, hitting TAB indents the current line if point is at the left margin
53or in the line's indentation, otherwise it insert a \"real\" TAB character. 53or in the line's indentation, otherwise it inserts a \"real\" TAB character.
54Most programming language modes have their own variable to control this, 54Some programming language modes have their own variable to control this,
55e.g., `c-tab-always-indent', and do not respect this variable." 55e.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)))