changeset 41567:37ca208c68f0

(array-reconfigure-rows): Use insert instead of insert-string.
author Pavel Janík <Pavel@Janik.cz>
date Mon, 26 Nov 2001 16:20:18 +0000
parents 82d4ad3abe8c
children 1aef79dfa6fe
files lisp/array.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/array.el	Mon Nov 26 16:19:34 2001 +0000
+++ b/lisp/array.el	Mon Nov 26 16:20:18 2001 +0000
@@ -688,7 +688,7 @@
 	(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)