summaryrefslogtreecommitdiff
path: root/lisp/array.el
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-11-26 16:20:18 +0000
committerPavel Janík <Pavel@Janik.cz>2001-11-26 16:20:18 +0000
commitcc94298a241fd5b83e7c1e92ebb72cdfe5f4a8ec (patch)
tree45c3744699a9454cd5a7fd00ea985e1b697a55a8 /lisp/array.el
parent4cf95c440bc218314bdd14779086361a6240a36e (diff)
downloademacs-cc94298a241fd5b83e7c1e92ebb72cdfe5f4a8ec.tar.gz
(array-reconfigure-rows): Use insert instead of insert-string.
Diffstat (limited to 'lisp/array.el')
-rw-r--r--lisp/array.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/array.el b/lisp/array.el
index fc128d3a7bc..693e4206a79 100644
--- a/lisp/array.el
+++ b/lisp/array.el
@@ -688,7 +688,7 @@ of array-rows-numbered."
(kill-line 1))
(t
;; Add the row number.
- (insert-string (format "%d:\n" this-row))))
+ (insert (format "%d:\n" this-row))))
;; Deal with the array columns in this row.
(cond
((= old-columns-per-line new-columns-per-line)