(x_set_foreground_color): Change frame's cursor_pixel
[bpt/emacs.git] / lisp / rsz-mini.el
CommitLineData
813f532d
RS
1;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents
2
e7cff550 3;; Copyright (C) 1990, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
813f532d 4
f6cafb3e
NF
5;; Author: Noah Friedman <friedman@splode.com>
6;; Roland McGrath <roland@gnu.org>
7;; Maintainer: Noah Friedman <friedman@splode.com>
2ca4ad7e 8;; Keywords: minibuffer, window, frame, display
813f532d 9
e7cff550 10;; $Id: rsz-mini.el,v 1.27 1999/09/13 20:49:05 gerd Exp $
a8a9b70d 11
813f532d
RS
12;; This file is part of GNU Emacs.
13
14;; GNU Emacs is free software; you can redistribute it and/or modify
15;; it under the terms of the GNU General Public License as published by
16;; the Free Software Foundation; either version 2, or (at your option)
17;; any later version.
18
19;; GNU Emacs is distributed in the hope that it will be useful,
20;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;; GNU General Public License for more details.
23
24;; You should have received a copy of the GNU General Public License
b578f267
EN
25;; along with GNU Emacs; see the file COPYING. If not, write to the
26;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27;; Boston, MA 02111-1307, USA.
813f532d
RS
28
29;;; Commentary:
30
b190d317
GM
31;; This package is obsolete. Emacs now resizes mini-windows
32;; automatically.
813f532d
RS
33
34;;; Code:
35
36\f
9e5b444e 37(defgroup resize-minibuffer nil
b190d317 38 "This customization group is obsolete."
9e5b444e
RS
39 :group 'frames)
40
abc8b974 41;;;###autoload
9e5b444e 42(defcustom resize-minibuffer-mode nil
b190d317 43 "*This variable is obsolete."
9e5b444e 44 :type 'boolean
6fc7e037 45 :group 'resize-minibuffer
876bfee0 46 :require 'rsz-mini)
813f532d
RS
47
48;;;###autoload
9e5b444e 49(defcustom resize-minibuffer-window-max-height nil
b190d317 50 "*This variable is obsolete."
9e5b444e
RS
51 :type '(choice (const nil) integer)
52 :group 'resize-minibuffer)
813f532d
RS
53
54;;;###autoload
9e5b444e 55(defcustom resize-minibuffer-window-exactly t
b190d317 56 "*This variable is obsolete."
9e5b444e
RS
57 :type 'boolean
58 :group 'resize-minibuffer)
813f532d 59
813f532d 60;;;###autoload
9e5b444e 61(defcustom resize-minibuffer-frame nil
b190d317 62 "*This variable is obsolete."
9e5b444e
RS
63 :type 'boolean
64 :group 'resize-minibuffer)
813f532d
RS
65
66;;;###autoload
9e5b444e 67(defcustom resize-minibuffer-frame-max-height nil
b190d317 68 "*This variable is obsolete.")
813f532d
RS
69
70;;;###autoload
9e5b444e 71(defcustom resize-minibuffer-frame-exactly t
b190d317 72 "*This variable is obsolete."
9e5b444e
RS
73 :type 'boolean
74 :group 'resize-minibuffer)
cb7217a7 75
813f532d
RS
76\f
77;;;###autoload
78(defun resize-minibuffer-mode (&optional prefix)
b190d317
GM
79 "This function is obsolete."
80 (interactive "P"))
6fc7e037 81
813f532d
RS
82(provide 'rsz-mini)
83
813f532d 84;; rsz-mini.el ends here