39022
|
1 ;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents
|
|
2
|
|
3 ;; Copyright (C) 1990, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
|
|
4
|
|
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
|
|
9
|
|
10 ;; $Id: rsz-mini.el,v 1.29 2001/07/16 12:22:59 pj Exp $
|
|
11
|
|
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
|
|
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.
|
|
28
|
|
29 ;;; Commentary:
|
|
30
|
|
31 ;; This package is obsolete. Emacs now resizes mini-windows
|
|
32 ;; automatically.
|
|
33
|
|
34 ;;; Code:
|
|
35
|
|
36
|
|
37 (defgroup resize-minibuffer nil
|
|
38 "This customization group is obsolete."
|
|
39 :group 'frames)
|
|
40
|
|
41 ;;;###autoload
|
|
42 (defcustom resize-minibuffer-mode nil
|
|
43 "*This variable is obsolete."
|
|
44 :type 'boolean
|
|
45 :group 'resize-minibuffer
|
|
46 :require 'rsz-mini)
|
|
47
|
|
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)
|
|
53
|
|
54 ;;;###autoload
|
|
55 (defcustom resize-minibuffer-window-exactly t
|
|
56 "*This variable is obsolete."
|
|
57 :type 'boolean
|
|
58 :group 'resize-minibuffer)
|
|
59
|
|
60 ;;;###autoload
|
|
61 (defcustom resize-minibuffer-frame nil
|
|
62 "*This variable is obsolete."
|
|
63 :type 'boolean
|
|
64 :group 'resize-minibuffer)
|
|
65
|
|
66 ;;;###autoload
|
|
67 (defcustom resize-minibuffer-frame-max-height nil
|
|
68 "*This variable is obsolete.")
|
|
69
|
|
70 ;;;###autoload
|
|
71 (defcustom resize-minibuffer-frame-exactly t
|
|
72 "*This variable is obsolete."
|
|
73 :type 'boolean
|
|
74 :group 'resize-minibuffer)
|
|
75
|
|
76
|
|
77 ;;;###autoload
|
|
78 (defun resize-minibuffer-mode (&optional prefix)
|
|
79 "This function is obsolete."
|
|
80 (interactive "P"))
|
|
81
|
|
82 (provide 'rsz-mini)
|
|
83
|
|
84 ;;; rsz-mini.el ends here
|