diff options
| author | Pavel Janík | 2001-11-26 16:20:18 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-11-26 16:20:18 +0000 |
| commit | cc94298a241fd5b83e7c1e92ebb72cdfe5f4a8ec (patch) | |
| tree | 45c3744699a9454cd5a7fd00ea985e1b697a55a8 /lisp/array.el | |
| parent | 4cf95c440bc218314bdd14779086361a6240a36e (diff) | |
| download | emacs-cc94298a241fd5b83e7c1e92ebb72cdfe5f4a8ec.tar.gz emacs-cc94298a241fd5b83e7c1e92ebb72cdfe5f4a8ec.zip | |
(array-reconfigure-rows): Use insert instead of insert-string.
Diffstat (limited to 'lisp/array.el')
| -rw-r--r-- | lisp/array.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 688 | (kill-line 1)) | 688 | (kill-line 1)) |
| 689 | (t | 689 | (t |
| 690 | ;; Add the row number. | 690 | ;; Add the row number. |
| 691 | (insert-string (format "%d:\n" this-row)))) | 691 | (insert (format "%d:\n" this-row)))) |
| 692 | ;; Deal with the array columns in this row. | 692 | ;; Deal with the array columns in this row. |
| 693 | (cond | 693 | (cond |
| 694 | ((= old-columns-per-line new-columns-per-line) | 694 | ((= old-columns-per-line new-columns-per-line) |