Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ee50a528
Commit
ee50a528
authored
Jun 30, 1994
by
Noah Friedman
Browse files
(resize-minibuffer-window-restore): Don't do anything if the window height
is already 1.
parent
5fb9cdd9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
lisp/rsz-mini.el
lisp/rsz-mini.el
+5
-3
No files found.
lisp/rsz-mini.el
View file @
ee50a528
...
...
@@ -7,7 +7,7 @@
;;; Maintainer: friedman@prep.ai.mit.edu
;;; Keywords: minibuffer, window, frame, display
;;; Status: Known to work in FSF GNU Emacs 19.26 and later.
;;; $Id: rsz-mini.el,v 1.
3
1994/0
5
/2
0 17:43:40
friedman Exp friedman $
;;; $Id: rsz-mini.el,v 1.
4
1994/0
6
/2
2 22:14:28
friedman Exp friedman $
;; This file is part of GNU Emacs.
...
...
@@ -207,8 +207,10 @@ respectively."
;; its idea of the minibuffer window size when the minibuffer isn't in use
;; anyway; this is just a kludge because of the timing for that update).
(
defun
resize-minibuffer-window-restore
()
(
enlarge-window
(
-
1
(
window-height
)))
(
sit-for
0
))
(
cond
((
>
(
window-height
)
1
)
(
enlarge-window
(
-
1
(
window-height
)))
(
sit-for
0
))))
;; Resize the minibuffer frame to contain the minibuffer's contents.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment