From 4424ce6f1239e19fe9fcb634f6238871019614cd Mon Sep 17 00:00:00 2001 From: Erik Naggum Date: Mon, 29 Apr 1996 18:12:08 +0000 Subject: [PATCH] (insert-tab): fix previous change --- lisp/indent.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2