diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-04-19 00:23:08 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-04-19 00:23:08 +0000 |
commit | afa0467f08f00add1f7056f8d0ccc0a3aa034d4b (patch) | |
tree | 26cdeb57fab3711edf14e5e40eeb95b85c7a6ee3 /lisp/rect.el | |
parent | c68b630c173954dc2e3361cb71560cc41bc8e81e (diff) | |
download | emacs-afa0467f08f00add1f7056f8d0ccc0a3aa034d4b.tar.gz |
(insert-rectangle): Use insert-for-yank.
Diffstat (limited to 'lisp/rect.el')
-rw-r--r-- | lisp/rect.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/rect.el b/lisp/rect.el index f20ae6b5b41..4d6da37a286 100644 --- a/lisp/rect.el +++ b/lisp/rect.el @@ -265,7 +265,7 @@ and point is at the lower right corner." (or (bolp) (insert ?\n)) (move-to-column insertcolumn t))) (setq first nil) - (insert (car lines)) + (insert-for-yank (car lines)) (setq lines (cdr lines))))) ;;;###autoload |