From: Stefan Monnier Date: Tue, 12 Jun 2007 16:33:39 +0000 (+0000) Subject: (tab-always-indent): Docstring fix. X-Git-Tag: emacs-pretest-23.0.90~12353 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9450aaa02b37474995c4650a515710be962c4968;p=emacs.git (tab-always-indent): Docstring fix. --- 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.") "*Controls the operation of the TAB key. If t, hitting TAB always just indents the current line. If nil, hitting TAB indents the current line if point is at the left margin -or in the line's indentation, otherwise it insert a \"real\" TAB character. -Most programming language modes have their own variable to control this, +or in the line's indentation, otherwise it inserts a \"real\" TAB character. +Some programming language modes have their own variable to control this, e.g., `c-tab-always-indent', and do not respect this variable." :group 'indent :type '(choice (const nil) (const t) (const always)))