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 | d1b465b610367ce120d8e838c8b3db2aedd73280 (patch) | |
tree | 32c0f4195e41159772c4b2ca924244ffbf211c22 /lisp/rsz-mini.el | |
parent | a7728a1d8b9f5f518705a45804cdb442eac5ae1f (diff) | |
download | emacs-d1b465b610367ce120d8e838c8b3db2aedd73280.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 |