diff options
| author | Pavel Janík | 2001-12-25 11:22:35 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-12-25 11:22:35 +0000 |
| commit | 04b7de794fea92fa0b142142765630ac498d0f75 (patch) | |
| tree | fff746f26c187b167bec75bf9a6eaab29cec7470 | |
| parent | ec5b8815a991f2a5d7d7feb9ef1f28bb7f171287 (diff) | |
| download | emacs-04b7de794fea92fa0b142142765630ac498d0f75.tar.gz emacs-04b7de794fea92fa0b142142765630ac498d0f75.zip | |
(tpu-reset-screen-size): Use set-frame-height and set-frame-width instead
of set-screen-height and set-screen-width.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/emulation/tpu-edt.el | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3b777790ceb..5bd7efa84b0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2001-12-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 1 | 2001-12-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 2 | ||
| 3 | * emulation/tpu-edt.el (tpu-reset-screen-size): Use | ||
| 4 | set-frame-height and set-frame-width instead of set-screen-height | ||
| 5 | and set-screen-width. | ||
| 6 | |||
| 3 | * vt-control.el (vt-wide, vt-narrow): Use set-frame-width instead | 7 | * vt-control.el (vt-wide, vt-narrow): Use set-frame-width instead |
| 4 | of obsolete set-screen-width. | 8 | of obsolete set-screen-width. |
| 5 | 9 | ||
| @@ -8,6 +12,10 @@ | |||
| 8 | * emerge.el (emerge-show-file-name): Use frame-height instead of | 12 | * emerge.el (emerge-show-file-name): Use frame-height instead of |
| 9 | obsolete screen-height. | 13 | obsolete screen-height. |
| 10 | 14 | ||
| 15 | * mail/mh-utils.el (mh-show-msg): Likewise. | ||
| 16 | (mh-handle-process-error): Use frame-width instead of obsolete | ||
| 17 | screen-width. | ||
| 18 | |||
| 11 | 2001-12-25 Richard M. Stallman <rms@gnu.org> | 19 | 2001-12-25 Richard M. Stallman <rms@gnu.org> |
| 12 | 20 | ||
| 13 | * window.el (balance-windows): Use new PRESERVE-BEFORE arg | 21 | * window.el (balance-windows): Use new PRESERVE-BEFORE arg |
diff --git a/lisp/emulation/tpu-edt.el b/lisp/emulation/tpu-edt.el index 30abf1392ce..ae3ac67a57c 100644 --- a/lisp/emulation/tpu-edt.el +++ b/lisp/emulation/tpu-edt.el | |||
| @@ -675,8 +675,8 @@ With argument, fill and justify." | |||
| 675 | (defun tpu-reset-screen-size (height width) | 675 | (defun tpu-reset-screen-size (height width) |
| 676 | "Sets the screen size." | 676 | "Sets the screen size." |
| 677 | (interactive "nnew screen height: \nnnew screen width: ") | 677 | (interactive "nnew screen height: \nnnew screen width: ") |
| 678 | (set-screen-height height) | 678 | (set-frame-height (selected-frame) height) |
| 679 | (set-screen-width width)) | 679 | (set-frame-width (selected-frame) width)) |
| 680 | 680 | ||
| 681 | (defun tpu-toggle-newline-and-indent nil | 681 | (defun tpu-toggle-newline-and-indent nil |
| 682 | "Toggle between 'newline and indent' and 'simple newline'." | 682 | "Toggle between 'newline and indent' and 'simple newline'." |