Mercurial > emacs
annotate lisp/obsolete/rsz-mini.el @ 94734:6fbc8341e153
(toggle-auto-composition): Don't use `iff' in docstring.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 08 May 2008 03:36:27 +0000 |
parents | 43d30a1ea764 |
children |
rev | line source |
---|---|
39022 | 1 ;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents |
2 | |
74509 | 3 ;; Copyright (C) 1990, 1993, 1994, 1995, 1997, 2001, 2002, 2003, 2004, |
79715 | 4 ;; 2005, 2006, 2007, 2008 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 | |
94667
43d30a1ea764
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94000
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
39022 | 14 ;; it under the terms of the GNU General Public License as published by |
94667
43d30a1ea764
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94000
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
43d30a1ea764
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94000
diff
changeset
|
16 ;; (at your option) any later version. |
39022 | 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 | |
94667
43d30a1ea764
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94000
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
39022 | 25 |
26 ;;; Commentary: | |
27 | |
94000
ee22366f2a68
Add a comment giving version of obsolescence.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
28 ;; This file has been obsolete since Emacs 21.1. |
ee22366f2a68
Add a comment giving version of obsolescence.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
29 |
ee22366f2a68
Add a comment giving version of obsolescence.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
30 ;; This package is obsolete. Emacs now resizes mini-windows automatically. |
39022 | 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 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79715
diff
changeset
|
83 ;; arch-tag: 3cb85d51-ab33-4e46-8362-dd87a5d06c99 |
39022 | 84 ;;; rsz-mini.el ends here |