diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-07-18 11:17:42 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-07-18 11:17:42 +0000 |
commit | f706036b3e69a7463dd867b61864f5518c478260 (patch) | |
tree | b73286a2d9985a6f8b4bb30363bda6b8e45b0f5a /lisp | |
parent | 3310fdd250eb405af16f5d979180db464381b327 (diff) | |
download | emacs-f706036b3e69a7463dd867b61864f5518c478260.tar.gz emacs-f706036b3e69a7463dd867b61864f5518c478260.tar.bz2 emacs-f706036b3e69a7463dd867b61864f5518c478260.zip |
(zone-pgm-stress-destress): Use `insert-buffer-substring', not `insert-buffer'.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/play/zone.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/play/zone.el b/lisp/play/zone.el index a075729ab99..7379a6f0352 100644 --- a/lisp/play/zone.el +++ b/lisp/play/zone.el @@ -622,7 +622,7 @@ If the element is a function or a list of a function and a number, (sit-for 3) (erase-buffer) (sit-for 3) - (insert-buffer "*Messages*") + (insert-buffer-substring "*Messages*") (message "") (goto-char (point-max)) (recenter -1) |