]> git.eshelyaron.com Git - emacs.git/commitdiff
(array-reconfigure-rows): Use insert instead of insert-string.
authorPavel Janík <Pavel@Janik.cz>
Mon, 26 Nov 2001 16:20:18 +0000 (16:20 +0000)
committerPavel Janík <Pavel@Janik.cz>
Mon, 26 Nov 2001 16:20:18 +0000 (16:20 +0000)
lisp/array.el

index fc128d3a7bce8e20de5bbcf29c3bad9838ea27f5..693e4206a797489f8a810fcab4f55649b88fb712 100644 (file)
@@ -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)