Mercurial > emacs
annotate lisp/obsolete/rsz-mini.el @ 63011:2b4fae9529bd
Mark documented features.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 04 Jun 2005 19:03:06 +0000 |
parents | c905fcf5e3d9 |
children | 18a818a2ee7c 21eea50897a7 f042e7c0fe20 |
rev | line source |
---|---|
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 | |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
54770
diff
changeset
|
66 "*This variable is obsolete." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
54770
diff
changeset
|
67 :group 'resize-minibuffer) |
39022 | 68 |
69 ;;;###autoload | |
70 (defcustom resize-minibuffer-frame-exactly t | |
71 "*This variable is obsolete." | |
72 :type 'boolean | |
73 :group 'resize-minibuffer) | |
74 | |
75 | |
76 ;;;###autoload | |
77 (defun resize-minibuffer-mode (&optional prefix) | |
78 "This function is obsolete." | |
79 (interactive "P")) | |
80 | |
81 (provide 'rsz-mini) | |
82 | |
52401 | 83 ;;; arch-tag: 3cb85d51-ab33-4e46-8362-dd87a5d06c99 |
39022 | 84 ;;; rsz-mini.el ends here |