aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Naggum1996-04-29 18:12:08 +0000
committerErik Naggum1996-04-29 18:12:08 +0000
commit4424ce6f1239e19fe9fcb634f6238871019614cd (patch)
tree70ab3fb38c2b3919e0c1206a7e31ae4458bbd6bb
parent35b3402f5e0f11df6b2b77afb36d8cd587fa5de8 (diff)
downloademacs-4424ce6f1239e19fe9fcb634f6238871019614cd.tar.gz
emacs-4424ce6f1239e19fe9fcb634f6238871019614cd.zip
(insert-tab): fix previous change
-rw-r--r--lisp/indent.el2
1 files changed, 1 insertions, 1 deletions
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.")
53 (if abbrev-mode 53 (if abbrev-mode
54 (expand-abbrev)) 54 (expand-abbrev))
55 (if indent-tabs-mode 55 (if indent-tabs-mode
56 (insert ?\t count) 56 (insert-char ?\t count)
57 (indent-to (* tab-width (+ count (/ (current-column) tab-width))))))) 57 (indent-to (* tab-width (+ count (/ (current-column) tab-width)))))))
58 58
59(defun indent-rigidly (start end arg) 59(defun indent-rigidly (start end arg)