comparison lisp/rsz-mini.el @ 24545:303c1eaaad3a

(resize-minibuffer-mode): Doc fix.
author Karl Heuer <kwzh@gnu.org>
date Tue, 30 Mar 1999 21:29:47 +0000
parents b9d8ec6db59a
children d0b40f823255
comparison
equal deleted inserted replaced
24544:e73df1859dfa 24545:303c1eaaad3a
5 ;; Author: Noah Friedman <friedman@splode.com> 5 ;; Author: Noah Friedman <friedman@splode.com>
6 ;; Roland McGrath <roland@gnu.org> 6 ;; Roland McGrath <roland@gnu.org>
7 ;; Maintainer: Noah Friedman <friedman@splode.com> 7 ;; Maintainer: Noah Friedman <friedman@splode.com>
8 ;; Keywords: minibuffer, window, frame, display 8 ;; Keywords: minibuffer, window, frame, display
9 9
10 ;; $Id: rsz-mini.el,v 1.22 1998/09/11 01:36:54 friedman Exp $ 10 ;; $Id: rsz-mini.el,v 1.23 1998/09/11 01:40:25 friedman Exp kwzh $
11 11
12 ;; This file is part of GNU Emacs. 12 ;; This file is part of GNU Emacs.
13 13
14 ;; GNU Emacs is free software; you can redistribute it and/or modify 14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by 15 ;; it under the terms of the GNU General Public License as published by
61 "Dynamically resize minibuffer to display entire contents" 61 "Dynamically resize minibuffer to display entire contents"
62 :group 'frames) 62 :group 'frames)
63 63
64 ;;;###autoload 64 ;;;###autoload
65 (defcustom resize-minibuffer-mode nil 65 (defcustom resize-minibuffer-mode nil
66 "*If non-`nil', resize the minibuffer so its entire contents are visible. 66 "Toggle resizing the minibuffer so its entire contents are visible.
67 You must modify via \\[customize] for this variable to have an effect." 67 This variable should be set only with \\[customize], which is equivalent
68 to using the function `resize-minibuffer-mode'.
68 :set (lambda (symbol value) 69 :set (lambda (symbol value)
69 (resize-minibuffer-mode (if value 1 -1))) 70 (resize-minibuffer-mode (if value 1 -1)))
70 :initialize 'custom-initialize-default 71 :initialize 'custom-initialize-default
71 :type 'boolean 72 :type 'boolean
72 :group 'resize-minibuffer 73 :group 'resize-minibuffer