diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-11-02 04:57:54 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-11-02 04:57:54 +0000 |
commit | fe552b4c0d54b84b3048a08b2fc19518cafe6f1d (patch) | |
tree | ceb9c7000cf35a72d7e63833db06be64596c9276 | |
parent | ed97db13590b125e592f2dae39d45b75f5007362 (diff) | |
download | emacs-fe552b4c0d54b84b3048a08b2fc19518cafe6f1d.tar.gz |
(tab-always-indent, indent-for-tab-command):
Remove redundant `never' setting.
-rw-r--r-- | lisp/indent.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/indent.el b/lisp/indent.el index e772b69de52..5ecd1e5b860 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -48,11 +48,10 @@ Don't rebind TAB unless you really need to.") (defcustom tab-always-indent t "*Controls the operation of the TAB key. If t, hitting TAB always just indents the current line. -If `never', hitting TAB just inserts a tab. 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." :group 'indent - :type '(choice (const nil) (const t) (const never) (const always))) + :type '(choice (const nil) (const t) (const always))) (defun indent-according-to-mode () "Indent line in proper way for current major mode." @@ -81,8 +80,7 @@ The function actually called to indent is determined by the value of `indent-line-function'." (interactive "P") (cond - ((or (eq tab-always-indent 'never) - ;; indent-to-left-margin is only meant for indenting, + ((or ;; indent-to-left-margin is only meant for indenting, ;; so we force it to always insert a tab here. (eq indent-line-function 'indent-to-left-margin) (and (not tab-always-indent) |