Remove CVS merge cookie left in.
[emacs.git] / lisp / rsz-mini.el
blobe6285723d091057002fe942955d765c4583a70ae
1 ;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents
3 ;; Copyright (C) 1990, 1993-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 ;; $Id: rsz-mini.el,v 1.2 1999/09/13 13:00:24 gerd Exp $
12 ;; This file is part of GNU Emacs.
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.
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.
24 ;; You should have received a copy of the GNU General Public License
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.
29 ;;; Commentary:
31 ;; This package is obsolete. Emacs now resizes mini-windows
32 ;; automatically.
34 ;;; Code:
37 (defgroup resize-minibuffer nil
38 "This customization group is obsolete."
39 :group 'frames)
41 ;;;###autoload
42 (defcustom resize-minibuffer-mode nil
43 "*This variable is obsolete."
44 :type 'boolean
45 :group 'resize-minibuffer
46 :require 'rsz-mini)
48 ;;;###autoload
49 (defcustom resize-minibuffer-window-max-height nil
50 "*This variable is obsolete."
51 :type '(choice (const nil) integer)
52 :group 'resize-minibuffer)
54 ;;;###autoload
55 (defcustom resize-minibuffer-window-exactly t
56 "*This variable is obsolete."
57 :type 'boolean
58 :group 'resize-minibuffer)
60 ;;;###autoload
61 (defcustom resize-minibuffer-frame nil
62 "*This variable is obsolete."
63 :type 'boolean
64 :group 'resize-minibuffer)
66 ;;;###autoload
67 (defcustom resize-minibuffer-frame-max-height nil
68 "*This variable is obsolete.")
70 ;;;###autoload
71 (defcustom resize-minibuffer-frame-exactly t
72 "*This variable is obsolete."
73 :type 'boolean
74 :group 'resize-minibuffer)
77 ;;;###autoload
78 (defun resize-minibuffer-mode (&optional prefix)
79 "This function is obsolete."
80 (interactive "P"))
82 (provide 'rsz-mini)
84 ;; rsz-mini.el ends here