From cc94298a241fd5b83e7c1e92ebb72cdfe5f4a8ec Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pavel=20Jan=C3=ADk?= Date: Mon, 26 Nov 2001 16:20:18 +0000 Subject: [PATCH] (array-reconfigure-rows): Use insert instead of insert-string. --- lisp/array.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5