2000-10-21 Miles Bader <miles@gnu.org>
+ * window.el (fit-window-to-buffer): New function.
+ (shrink-window-if-larger-than-buffer): Use it.
+ * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
+
* international/quail.el (quail-show-guidance-buf): Make sure
guidance window really has enough room.
(quail-update-guidance): If quail-guidance-win is already shown,
(unless (or (one-window-p 'nomini)
(not (pos-visible-in-window-p (point-min)))
(/= (frame-width) (window-width)))
- (let* ((max-height (if (functionp temp-buffer-max-height)
- (funcall temp-buffer-max-height (current-buffer))
- temp-buffer-max-height))
- (min-height (1- window-min-height))
- (text-height (count-screen-lines))
- (new-height (max (min text-height max-height) min-height)))
- (set-window-text-height nil new-height))))
+ (fit-window-to-buffer
+ (selected-window)
+ (if (functionp temp-buffer-max-height)
+ (funcall temp-buffer-max-height (current-buffer))
+ temp-buffer-max-height))))
;; `help-manyarg-func-alist' is defined primitively (in doc.c).
;; New primitives with `MANY' or `UNEVALLED' arglists should be added