aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2005-12-03 12:07:55 +0000
committerEli Zaretskii2005-12-03 12:07:55 +0000
commit7a5ea63f0f882af07954501b0e7b577c6bdb6055 (patch)
tree92dd9bac163300ca12eb8a8851b9757c9e332f0d
parent7b057a3d5755259dd96c02d5f3dfe4e98e00c0bc (diff)
downloademacs-7a5ea63f0f882af07954501b0e7b577c6bdb6055.tar.gz
emacs-7a5ea63f0f882af07954501b0e7b577c6bdb6055.zip
(apropos-zippy): Call print-help-return-message, similar to other Help
and Apropos commands.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/play/yow.el3
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 687b89d3906..e640bb95710 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,8 +1,12 @@
12005-12-03 Eli Zaretskii <eliz@gnu.org> 12005-12-03 Eli Zaretskii <eliz@gnu.org>
2 2
3 * play/yow.el (apropos-zippy): Call print-help-return-message,
4 similar to other Help and Apropos commands.
5
3 * help.el (print-help-return-message): If pop-up-frames is 6 * help.el (print-help-return-message): If pop-up-frames is
4 non-nil, set up help-return-method to delete the help window and, 7 non-nil, set up help-return-method to delete the help window and,
5 possibly, its frame as well. Doc fix. 8 possibly, its frame as well, and don't display message about
9 scrolling the help window. Doc fix.
6 (help-return-method): Doc fix. 10 (help-return-method): Doc fix.
7 11
82005-12-03 Martin Rudalics <rudalics@gmx.at> (tiny change) 122005-12-03 Martin Rudalics <rudalics@gmx.at> (tiny change)
diff --git a/lisp/play/yow.el b/lisp/play/yow.el
index 2809e3ec620..74a30d6ac9d 100644
--- a/lisp/play/yow.el
+++ b/lisp/play/yow.el
@@ -102,7 +102,8 @@ If called interactively, display a list of matches."
102 (while l 102 (while l
103 (princ (car l)) 103 (princ (car l))
104 (setq l (cdr l)) 104 (setq l (cdr l))
105 (and l (princ "\n\n")))))))) 105 (and l (princ "\n\n")))
106 (print-help-return-message))))))
106 matches)) 107 matches))
107 108
108 109