Mercurial > emacs
annotate lisp/obsolete/rsz-mini.el @ 72428:608323e2c0e3
*** empty log message ***
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Thu, 17 Aug 2006 11:44:05 +0000 |
parents | e8a3fb527b77 |
children | f7702c5f335d d04d8ccb3c41 c5406394f567 |
rev | line source |
---|---|
39022 | 1 ;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents |
2 | |
64751
5b1a238fcbb4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1990, 1993, 1994, 1995, 1997, 2002, 2003, 2004, |
68640
e8a3fb527b77
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64751
diff
changeset
|
4 ;; 2005, 2006 Free Software Foundation, Inc. |
39022 | 5 |
6 ;; Author: Noah Friedman <friedman@splode.com> | |
7 ;; Roland McGrath <roland@gnu.org> | |
8 ;; Maintainer: Noah Friedman <friedman@splode.com> | |
9 ;; Keywords: minibuffer, window, frame, display | |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
15 ;; the Free Software Foundation; either version 2, or (at your option) | |
16 ;; any later version. | |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 ;; Boston, MA 02110-1301, USA. | |
39022 | 27 |
28 ;;; Commentary: | |
29 | |
30 ;; This package is obsolete. Emacs now resizes mini-windows | |
31 ;; automatically. | |
32 | |
33 ;;; Code: | |
34 | |
35 | |
36 (defgroup resize-minibuffer nil | |
37 "This customization group is obsolete." | |
38 :group 'frames) | |
39 | |
40 ;;;###autoload | |
41 (defcustom resize-minibuffer-mode nil | |
42 "*This variable is obsolete." | |
43 :type 'boolean | |
44 :group 'resize-minibuffer | |
45 :require 'rsz-mini) | |
46 | |
47 ;;;###autoload | |
48 (defcustom resize-minibuffer-window-max-height nil | |
49 "*This variable is obsolete." | |
50 :type '(choice (const nil) integer) | |
51 :group 'resize-minibuffer) | |
52 | |
53 ;;;###autoload | |
54 (defcustom resize-minibuffer-window-exactly t | |
55 "*This variable is obsolete." | |
56 :type 'boolean | |
57 :group 'resize-minibuffer) | |
58 | |
59 ;;;###autoload | |
60 (defcustom resize-minibuffer-frame nil | |
61 "*This variable is obsolete." | |
62 :type 'boolean | |
63 :group 'resize-minibuffer) | |
64 | |
65 ;;;###autoload | |
66 (defcustom resize-minibuffer-frame-max-height nil | |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
54770
diff
changeset
|
67 "*This variable is obsolete." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
54770
diff
changeset
|
68 :group 'resize-minibuffer) |
39022 | 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 | |
52401 | 84 ;;; arch-tag: 3cb85d51-ab33-4e46-8362-dd87a5d06c99 |
39022 | 85 ;;; rsz-mini.el ends here |