diff options
| author | Richard M. Stallman | 2002-04-19 00:23:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-04-19 00:23:08 +0000 |
| commit | afa0467f08f00add1f7056f8d0ccc0a3aa034d4b (patch) | |
| tree | 26cdeb57fab3711edf14e5e40eeb95b85c7a6ee3 | |
| parent | c68b630c173954dc2e3361cb71560cc41bc8e81e (diff) | |
| download | emacs-afa0467f08f00add1f7056f8d0ccc0a3aa034d4b.tar.gz emacs-afa0467f08f00add1f7056f8d0ccc0a3aa034d4b.zip | |
(insert-rectangle): Use insert-for-yank.
| -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." | |||
| 265 | (or (bolp) (insert ?\n)) | 265 | (or (bolp) (insert ?\n)) |
| 266 | (move-to-column insertcolumn t))) | 266 | (move-to-column insertcolumn t))) |
| 267 | (setq first nil) | 267 | (setq first nil) |
| 268 | (insert (car lines)) | 268 | (insert-for-yank (car lines)) |
| 269 | (setq lines (cdr lines))))) | 269 | (setq lines (cdr lines))))) |
| 270 | 270 | ||
| 271 | ;;;###autoload | 271 | ;;;###autoload |