From: Pavel Janík Date: Mon, 26 Nov 2001 16:20:18 +0000 (+0000) Subject: (array-reconfigure-rows): Use insert instead of insert-string. X-Git-Tag: ttn-vms-21-2-B4~18127 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cc94298a241fd5b83e7c1e92ebb72cdfe5f4a8ec;p=emacs.git (array-reconfigure-rows): Use insert instead of insert-string. --- 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)