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 ;; This file is part of GNU Emacs.
|
|
11
|
|
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)
|
|
15 ;; any later version.
|
|
16
|
|
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.
|
|
21
|
|
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.
|
|
26
|
|
27 ;;; Commentary:
|
|
28
|
|
29 ;; This package is obsolete. Emacs now resizes mini-windows
|
|
30 ;; automatically.
|
|
31
|
|
32 ;;; Code:
|
|
33
|
|
34
|
|
35 (defgroup resize-minibuffer nil
|
|
36 "This customization group is obsolete."
|
|
37 :group 'frames)
|
|
38
|
|
39 ;;;###autoload
|
|
40 (defcustom resize-minibuffer-mode nil
|
|
41 "*This variable is obsolete."
|
|
42 :type 'boolean
|
|
43 :group 'resize-minibuffer
|
|
44 :require 'rsz-mini)
|
|
45
|
|
46 ;;;###autoload
|
|
47 (defcustom resize-minibuffer-window-max-height nil
|
|
48 "*This variable is obsolete."
|
|
49 :type '(choice (const nil) integer)
|
|
50 :group 'resize-minibuffer)
|
|
51
|
|
52 ;;;###autoload
|
|
53 (defcustom resize-minibuffer-window-exactly t
|
|
54 "*This variable is obsolete."
|
|
55 :type 'boolean
|
|
56 :group 'resize-minibuffer)
|
|
57
|
|
58 ;;;###autoload
|
|
59 (defcustom resize-minibuffer-frame nil
|
|
60 "*This variable is obsolete."
|
|
61 :type 'boolean
|
|
62 :group 'resize-minibuffer)
|
|
63
|
|
64 ;;;###autoload
|
|
65 (defcustom resize-minibuffer-frame-max-height nil
|
|
66 "*This variable is obsolete.")
|
|
67
|
|
68 ;;;###autoload
|
|
69 (defcustom resize-minibuffer-frame-exactly t
|
|
70 "*This variable is obsolete."
|
|
71 :type 'boolean
|
|
72 :group 'resize-minibuffer)
|
|
73
|
|
74
|
|
75 ;;;###autoload
|
|
76 (defun resize-minibuffer-mode (&optional prefix)
|
|
77 "This function is obsolete."
|
|
78 (interactive "P"))
|
|
79
|
|
80 (provide 'rsz-mini)
|
|
81
|
52401
|
82 ;;; arch-tag: 3cb85d51-ab33-4e46-8362-dd87a5d06c99
|
39022
|
83 ;;; rsz-mini.el ends here
|