Mercurial > emacs
annotate lisp/obsolete/rsz-mini.el @ 94283:71ec8fd62188
(diary-list-sexp-entries): Doc fix.
(diary-remind): Allow negative DAYS to represent a range 1:DAYS.
Suggested by Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 23 Apr 2008 03:05:53 +0000 |
parents | ee22366f2a68 |
children | 43d30a1ea764 |
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 | |
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 | |
78228
1e016d63f292
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
15 ;; the Free Software Foundation; either version 3, or (at your option) |
39022 | 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 | |
94000
ee22366f2a68
Add a comment giving version of obsolescence.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
30 ;; 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
|
31 |
ee22366f2a68
Add a comment giving version of obsolescence.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
32 ;; This package is obsolete. Emacs now resizes mini-windows automatically. |
39022 | 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 | |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
54770
diff
changeset
|
68 "*This variable is obsolete." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
54770
diff
changeset
|
69 :group 'resize-minibuffer) |
39022 | 70 |
71 ;;;###autoload | |
72 (defcustom resize-minibuffer-frame-exactly t | |
73 "*This variable is obsolete." | |
74 :type 'boolean | |
75 :group 'resize-minibuffer) | |
76 | |
77 | |
78 ;;;###autoload | |
79 (defun resize-minibuffer-mode (&optional prefix) | |
80 "This function is obsolete." | |
81 (interactive "P")) | |
82 | |
83 (provide 'rsz-mini) | |
84 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79715
diff
changeset
|
85 ;; arch-tag: 3cb85d51-ab33-4e46-8362-dd87a5d06c99 |
39022 | 86 ;;; rsz-mini.el ends here |