diff options
| author | Richard M. Stallman | 1996-02-08 17:49:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-02-08 17:49:24 +0000 |
| commit | a259d3371ea63d0f7bad62c68a543bcfb6b79bd7 (patch) | |
| tree | 36fdddb2be80780f5bacfdcaf3adfc3207b365d7 | |
| parent | 3a3bfb181b1fca649129c8751db2adfa1a67fa8e (diff) | |
| download | emacs-a259d3371ea63d0f7bad62c68a543bcfb6b79bd7.tar.gz emacs-a259d3371ea63d0f7bad62c68a543bcfb6b79bd7.zip | |
(x-display-pixel-height, x-display-pixel-width):
Make the returned value consistent with one-pixel-per-character.
| -rw-r--r-- | lisp/term/pc-win.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/term/pc-win.el b/lisp/term/pc-win.el index f435b0f7f6a..5e5f9aea36f 100644 --- a/lisp/term/pc-win.el +++ b/lisp/term/pc-win.el | |||
| @@ -116,8 +116,8 @@ | |||
| 116 | (fset 'unfocus-frame 'ignore) | 116 | (fset 'unfocus-frame 'ignore) |
| 117 | (defun x-list-fonts (pattern &optional face frame) (list "default")) | 117 | (defun x-list-fonts (pattern &optional face frame) (list "default")) |
| 118 | (defun x-color-defined-p (color) (numberp (msdos-color-translate color))) | 118 | (defun x-color-defined-p (color) (numberp (msdos-color-translate color))) |
| 119 | (defun x-display-pixel-width (&optional frame) (* 8 (frame-width frame))) | 119 | (defun x-display-pixel-width (&optional frame) (frame-width frame)) |
| 120 | (defun x-display-pixel-height (&optional frame) (* 8 (frame-height frame))) | 120 | (defun x-display-pixel-height (&optional frame) (frame-height frame)) |
| 121 | (defun x-display-planes (&optional frame) 4) ; 3 for background, actually | 121 | (defun x-display-planes (&optional frame) 4) ; 3 for background, actually |
| 122 | (defun x-display-color-cells (&optional frame) 16) ; ??? | 122 | (defun x-display-color-cells (&optional frame) 16) ; ??? |
| 123 | (defun x-server-max-request-size (&optional frame) 1000000) ; ??? | 123 | (defun x-server-max-request-size (&optional frame) 1000000) ; ??? |