1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(array-reconfigure-rows): Use insert instead of insert-string.

This commit is contained in:
Pavel Janík 2001-11-26 16:20:18 +00:00
parent 4cf95c440b
commit cc94298a24

View 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)