From: Erik Naggum Date: Mon, 29 Apr 1996 18:12:08 +0000 (+0000) Subject: (insert-tab): fix previous change X-Git-Tag: emacs-19.34~748 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4424ce6f1239e19fe9fcb634f6238871019614cd;p=emacs.git (insert-tab): fix previous change --- diff --git a/lisp/indent.el b/lisp/indent.el index 6c2f1462de9..c1e2fc2e132 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -53,7 +53,7 @@ Function to indent current line.") (if abbrev-mode (expand-abbrev)) (if indent-tabs-mode - (insert ?\t count) + (insert-char ?\t count) (indent-to (* tab-width (+ count (/ (current-column) tab-width))))))) (defun indent-rigidly (start end arg)