aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2001-04-17 16:33:10 +0000
committerGerd Moellmann <[email protected]>2001-04-17 16:33:10 +0000
commit61294601ffb1c131a44ebcb98e039e0a3aec97de (patch)
treef76d3b15615ecd9614356fec585a75b67f0849ba /lisp
parentc095a1dd1991456af6518742f781bfb237cb64ad (diff)
(indent-for-tab-command): Call indent-line-function
with no argument if PREFIX-ARG is non-nil.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/indent.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/indent.el b/lisp/indent.el
index 648d928a1f..a558ff26d5 100644
--- a/lisp/indent.el
+++ b/lisp/indent.el
@@ -1,6 +1,6 @@
;;; indent.el --- indentation commands for Emacs
-;; Copyright (C) 1985, 1995 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1995, 2001 Free Software Foundation, Inc.
;; Maintainer: FSF
@@ -65,9 +65,7 @@ The function actually called to indent is determined by the value of
(and (not tab-always-indent)
(> (current-column) (current-indentation))))
(insert-tab prefix-arg)
- (if prefix-arg
- (funcall indent-line-function prefix-arg)
- (funcall indent-line-function))))
+ (funcall indent-line-function)))
(defun insert-tab (&optional prefix-arg)
(let ((count (prefix-numeric-value prefix-arg)))