From a259d3371ea63d0f7bad62c68a543bcfb6b79bd7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 8 Feb 1996 17:49:24 +0000 Subject: [PATCH] (x-display-pixel-height, x-display-pixel-width): Make the returned value consistent with one-pixel-per-character. --- lisp/term/pc-win.el | 4 ++-- 1 file 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 @@ (fset 'unfocus-frame 'ignore) (defun x-list-fonts (pattern &optional face frame) (list "default")) (defun x-color-defined-p (color) (numberp (msdos-color-translate color))) -(defun x-display-pixel-width (&optional frame) (* 8 (frame-width frame))) -(defun x-display-pixel-height (&optional frame) (* 8 (frame-height frame))) +(defun x-display-pixel-width (&optional frame) (frame-width frame)) +(defun x-display-pixel-height (&optional frame) (frame-height frame)) (defun x-display-planes (&optional frame) 4) ; 3 for background, actually (defun x-display-color-cells (&optional frame) 16) ; ??? (defun x-server-max-request-size (&optional frame) 1000000) ; ??? -- 2.39.2