diff options
| author | Pavel Janík | 2001-12-25 11:01:47 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-12-25 11:01:47 +0000 |
| commit | 19d62fda544722a522318bc61e1cdf1785e899df (patch) | |
| tree | e8faa65073ee1257a43677ad3a9cd3264c9c9b1a | |
| parent | 51896ebc378ee3f72e6abac58989c98f59cd3e31 (diff) | |
| download | emacs-19d62fda544722a522318bc61e1cdf1785e899df.tar.gz emacs-19d62fda544722a522318bc61e1cdf1785e899df.zip | |
(emerge-show-file-name): Use frame-height instead of obsolete
screen-height.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emerge.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a65b9e444be..7a46f4ea292 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-12-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | ||
| 2 | |||
| 3 | * emerge.el (emerge-show-file-name): Use frame-height instead of | ||
| 4 | obsolete screen-height. | ||
| 5 | |||
| 1 | 2001-12-25 Richard M. Stallman <rms@gnu.org> | 6 | 2001-12-25 Richard M. Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * window.el (balance-windows): Use new PRESERVE-BEFORE arg | 8 | * window.el (balance-windows): Use new PRESERVE-BEFORE arg |
diff --git a/lisp/emerge.el b/lisp/emerge.el index 68e857ff245..e08e566ee2a 100644 --- a/lisp/emerge.el +++ b/lisp/emerge.el | |||
| @@ -3115,7 +3115,7 @@ SPC, it is ignored; if it is anything else, it is processed as a command." | |||
| 3115 | (if (not (pos-visible-in-window-p)) | 3115 | (if (not (pos-visible-in-window-p)) |
| 3116 | (let ((echo-keystrokes 0)) | 3116 | (let ((echo-keystrokes 0)) |
| 3117 | (while (and (not (pos-visible-in-window-p)) | 3117 | (while (and (not (pos-visible-in-window-p)) |
| 3118 | (> (1- (screen-height)) (window-height))) | 3118 | (> (1- (frame-height)) (window-height))) |
| 3119 | (enlarge-window 1)) | 3119 | (enlarge-window 1)) |
| 3120 | (let ((c (read-event))) | 3120 | (let ((c (read-event))) |
| 3121 | (if (not (eq c 32)) | 3121 | (if (not (eq c 32)) |