]> git.eshelyaron.com Git - emacs.git/commitdiff
(insert-tab): fix previous change
authorErik Naggum <erik@naggum.no>
Mon, 29 Apr 1996 18:12:08 +0000 (18:12 +0000)
committerErik Naggum <erik@naggum.no>
Mon, 29 Apr 1996 18:12:08 +0000 (18:12 +0000)
lisp/indent.el

index 6c2f1462de9b9d9f852c8bf0802c07a2f0b78f95..c1e2fc2e1324394985946d670f406080321bd6be 100644 (file)
@@ -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)