diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-11-26 16:15:49 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-11-26 16:15:49 +0000 |
commit | 967732f69899bff98e2e010ff12b7bb46b2660f1 (patch) | |
tree | ea4c51d42969b141d9a8dad71fd75af8fb56f45e /lisp/play | |
parent | 26e46917b974c16b0107164c8a2765d0c5490b65 (diff) | |
download | emacs-967732f69899bff98e2e010ff12b7bb46b2660f1.tar.gz |
(psychoanalyze-pinhead): Use insert instead of insert-string.
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/yow.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/play/yow.el b/lisp/play/yow.el index 4e7f88b4169..c23bd706abd 100644 --- a/lisp/play/yow.el +++ b/lisp/play/yow.el @@ -119,7 +119,7 @@ If called interactively, display a list of matches." (switch-to-buffer "*doctor*") (sit-for 0) (while (not (input-pending-p)) - (insert-string (yow)) + (insert (yow)) (sit-for 0) (doctor-ret-or-read 1) (doctor-ret-or-read 1))) |