aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/indent.el
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2001-11-02 04:57:54 +0000
committerStefan Monnier <[email protected]>2001-11-02 04:57:54 +0000
commitfe552b4c0d54b84b3048a08b2fc19518cafe6f1d (patch)
treeceb9c7000cf35a72d7e63833db06be64596c9276 /lisp/indent.el
parented97db13590b125e592f2dae39d45b75f5007362 (diff)
(tab-always-indent, indent-for-tab-command):
Remove redundant `never' setting.
Diffstat (limited to 'lisp/indent.el')
-rw-r--r--lisp/indent.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/indent.el b/lisp/indent.el
index e772b69de5..5ecd1e5b86 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)