1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00
emacs/lisp/rsz-mini.el

85 lines
2.3 KiB
EmacsLisp
Raw Normal View History

1994-05-02 05:16:59 +00:00
;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents
1998-09-11 01:40:25 +00:00
;; Copyright (C) 1990, 1993-1995, 1997 Free Software Foundation, Inc.
1994-05-02 05:16:59 +00:00
1998-09-11 01:40:25 +00:00
;; Author: Noah Friedman <friedman@splode.com>
;; Roland McGrath <roland@gnu.org>
;; Maintainer: Noah Friedman <friedman@splode.com>
;; Keywords: minibuffer, window, frame, display
1994-05-02 05:16:59 +00:00
1999-09-13 20:49:05 +00:00
;; $Id: rsz-mini.el,v 1.2 1999/09/13 13:00:24 gerd Exp $
1994-05-02 05:16:59 +00:00
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
1996-01-14 07:34:30 +00:00
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
1994-05-02 05:16:59 +00:00
;;; Commentary:
1999-09-13 20:49:05 +00:00
;; This package is obsolete. Emacs now resizes mini-windows
;; automatically.
1994-05-02 05:16:59 +00:00
;;; Code:
(defgroup resize-minibuffer nil
1999-09-13 20:49:05 +00:00
"This customization group is obsolete."
:group 'frames)
1998-06-04 16:00:44 +00:00
;;;###autoload
(defcustom resize-minibuffer-mode nil
1999-09-13 20:49:05 +00:00
"*This variable is obsolete."
:type 'boolean
:group 'resize-minibuffer
:require 'rsz-mini)
1994-05-02 05:16:59 +00:00
;;;###autoload
(defcustom resize-minibuffer-window-max-height nil
1999-09-13 20:49:05 +00:00
"*This variable is obsolete."
:type '(choice (const nil) integer)
:group 'resize-minibuffer)
1994-05-02 05:16:59 +00:00
;;;###autoload
(defcustom resize-minibuffer-window-exactly t
1999-09-13 20:49:05 +00:00
"*This variable is obsolete."
:type 'boolean
:group 'resize-minibuffer)
1994-05-02 05:16:59 +00:00
;;;###autoload
(defcustom resize-minibuffer-frame nil
1999-09-13 20:49:05 +00:00
"*This variable is obsolete."
:type 'boolean
:group 'resize-minibuffer)
1994-05-02 05:16:59 +00:00
;;;###autoload
(defcustom resize-minibuffer-frame-max-height nil
1999-09-13 20:49:05 +00:00
"*This variable is obsolete.")
1994-05-02 05:16:59 +00:00
;;;###autoload
(defcustom resize-minibuffer-frame-exactly t
1999-09-13 20:49:05 +00:00
"*This variable is obsolete."
:type 'boolean
:group 'resize-minibuffer)
1994-05-02 05:16:59 +00:00
;;;###autoload
(defun resize-minibuffer-mode (&optional prefix)
1999-09-13 20:49:05 +00:00
"This function is obsolete."
(interactive "P"))
1994-05-02 05:16:59 +00:00
(provide 'rsz-mini)
;; rsz-mini.el ends here