(Fpos_visible_in_window_p, Fset_window_hscroll)
[emacs.git] / lisp / obsolete / rsz-mini.el
blobd44a88df801e24ae66376ae4732a60b1bcc3781c
1 ;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents
3 ;; Copyright (C) 1990, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
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
10 ;; This file is part of GNU Emacs.
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.
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.
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.
27 ;;; Commentary:
29 ;; This package is obsolete. Emacs now resizes mini-windows
30 ;; automatically.
32 ;;; Code:
35 (defgroup resize-minibuffer nil
36 "This customization group is obsolete."
37 :group 'frames)
39 ;;;###autoload
40 (defcustom resize-minibuffer-mode nil
41 "*This variable is obsolete."
42 :type 'boolean
43 :group 'resize-minibuffer
44 :require 'rsz-mini)
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)
52 ;;;###autoload
53 (defcustom resize-minibuffer-window-exactly t
54 "*This variable is obsolete."
55 :type 'boolean
56 :group 'resize-minibuffer)
58 ;;;###autoload
59 (defcustom resize-minibuffer-frame nil
60 "*This variable is obsolete."
61 :type 'boolean
62 :group 'resize-minibuffer)
64 ;;;###autoload
65 (defcustom resize-minibuffer-frame-max-height nil
66 "*This variable is obsolete.")
68 ;;;###autoload
69 (defcustom resize-minibuffer-frame-exactly t
70 "*This variable is obsolete."
71 :type 'boolean
72 :group 'resize-minibuffer)
75 ;;;###autoload
76 (defun resize-minibuffer-mode (&optional prefix)
77 "This function is obsolete."
78 (interactive "P"))
80 (provide 'rsz-mini)
82 ;;; arch-tag: 3cb85d51-ab33-4e46-8362-dd87a5d06c99
83 ;;; rsz-mini.el ends here