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>
|
1995-04-08 08:22:07 +00:00
|
|
|
|
;; 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 $
|
1997-06-23 08:21:26 +00:00
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
1997-04-12 19:31:00 +00:00
|
|
|
|
(defgroup resize-minibuffer nil
|
1999-09-13 20:49:05 +00:00
|
|
|
|
"This customization group is obsolete."
|
1997-04-12 19:31:00 +00:00
|
|
|
|
:group 'frames)
|
|
|
|
|
|
1998-06-04 16:00:44 +00:00
|
|
|
|
;;;###autoload
|
1997-04-12 19:31:00 +00:00
|
|
|
|
(defcustom resize-minibuffer-mode nil
|
1999-09-13 20:49:05 +00:00
|
|
|
|
"*This variable is obsolete."
|
1997-04-12 19:31:00 +00:00
|
|
|
|
:type 'boolean
|
1998-01-03 07:17:25 +00:00
|
|
|
|
:group 'resize-minibuffer
|
1998-09-11 01:36:54 +00:00
|
|
|
|
:require 'rsz-mini)
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1997-04-12 19:31:00 +00:00
|
|
|
|
(defcustom resize-minibuffer-window-max-height nil
|
1999-09-13 20:49:05 +00:00
|
|
|
|
"*This variable is obsolete."
|
1997-04-12 19:31:00 +00:00
|
|
|
|
:type '(choice (const nil) integer)
|
|
|
|
|
:group 'resize-minibuffer)
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1997-04-12 19:31:00 +00:00
|
|
|
|
(defcustom resize-minibuffer-window-exactly t
|
1999-09-13 20:49:05 +00:00
|
|
|
|
"*This variable is obsolete."
|
1997-04-12 19:31:00 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'resize-minibuffer)
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1997-04-12 19:31:00 +00:00
|
|
|
|
(defcustom resize-minibuffer-frame nil
|
1999-09-13 20:49:05 +00:00
|
|
|
|
"*This variable is obsolete."
|
1997-04-12 19:31:00 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'resize-minibuffer)
|
1994-05-02 05:16:59 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1997-04-12 19:31:00 +00:00
|
|
|
|
(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
|
1997-04-12 19:31:00 +00:00
|
|
|
|
(defcustom resize-minibuffer-frame-exactly t
|
1999-09-13 20:49:05 +00:00
|
|
|
|
"*This variable is obsolete."
|
1997-04-12 19:31:00 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'resize-minibuffer)
|
1994-06-22 22:14:28 +00:00
|
|
|
|
|
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"))
|
1998-01-03 07:17:25 +00:00
|
|
|
|
|
1994-05-02 05:16:59 +00:00
|
|
|
|
(provide 'rsz-mini)
|
|
|
|
|
|
|
|
|
|
;; rsz-mini.el ends here
|