1 ;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents
3 ;; Copyright (C) 1990, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
5 ;; Author: Noah Friedman <friedman@splode.com>
6 ;; Roland McGrath <roland@gnu.org>
7 ;; Maintainer: Noah Friedman <friedman@splode.com>
8 ;; Keywords: minibuffer, window, frame, display
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
29 ;; This package is obsolete. Emacs now resizes mini-windows
35 (defgroup resize-minibuffer nil
36 "This customization group is obsolete."
40 (defcustom resize-minibuffer-mode nil
41 "*This variable is obsolete."
43 :group
'resize-minibuffer
47 (defcustom resize-minibuffer-window-max-height nil
48 "*This variable is obsolete."
49 :type
'(choice (const nil
) integer
)
50 :group
'resize-minibuffer
)
53 (defcustom resize-minibuffer-window-exactly t
54 "*This variable is obsolete."
56 :group
'resize-minibuffer
)
59 (defcustom resize-minibuffer-frame nil
60 "*This variable is obsolete."
62 :group
'resize-minibuffer
)
65 (defcustom resize-minibuffer-frame-max-height nil
66 "*This variable is obsolete.")
69 (defcustom resize-minibuffer-frame-exactly t
70 "*This variable is obsolete."
72 :group
'resize-minibuffer
)
76 (defun resize-minibuffer-mode (&optional prefix
)
77 "This function is obsolete."
82 ;;; arch-tag: 3cb85d51-ab33-4e46-8362-dd87a5d06c99
83 ;;; rsz-mini.el ends here