diff options
author | Noah Friedman <friedman@splode.com> | 1994-05-20 17:43:40 +0000 |
---|---|---|
committer | Noah Friedman <friedman@splode.com> | 1994-05-20 17:43:40 +0000 |
commit | dfe893a02ae35d7bc510c13df74bb1b9a8e2b7cd (patch) | |
tree | 2d96854192480ab6148691e522b00b96f0e29005 /lisp/rsz-mini.el | |
parent | 73aa97044ac99f67a527ebee2a29822b52c70f46 (diff) | |
download | emacs-dfe893a02ae35d7bc510c13df74bb1b9a8e2b7cd.tar.gz |
Enable resize-minibuffer-mode when this file is loaded.
Diffstat (limited to 'lisp/rsz-mini.el')
-rw-r--r-- | lisp/rsz-mini.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/rsz-mini.el b/lisp/rsz-mini.el index deef3b3c0df..4bd919a7095 100644 --- a/lisp/rsz-mini.el +++ b/lisp/rsz-mini.el @@ -7,6 +7,7 @@ ;;; Maintainer: friedman@prep.ai.mit.edu ;;; Keywords: minibuffer, window, frame, display ;;; Status: Known to work in FSF GNU Emacs 19.23. +;;; $Id$ ;; This file is part of GNU Emacs. @@ -50,6 +51,7 @@ ;;; (autoload 'resize-minibuffer-mode "rsz-mini" nil t) ;;; ;;; Invoking the command `resize-minibuffer-mode' will then enable this mode. +;;; Simply loading this file will enable resize-minibuffer-mode. ;;; Code: @@ -196,5 +198,6 @@ respectively." (provide 'rsz-mini) (add-hook 'minibuffer-setup-hook 'resize-minibuffer-setup) +(resize-minibuffer-mode) ;; rsz-mini.el ends here |