# HG changeset patch # User Richard M. Stallman # Date 823801764 0 # Node ID e46b1e676418d406fb6334ea642fb4bb9107c4c0 # Parent 7efdb933356e6ae83d7d46e4d054cb125db93b56 (x-display-pixel-height, x-display-pixel-width): Make the returned value consistent with one-pixel-per-character. diff -r 7efdb933356e -r e46b1e676418 lisp/term/pc-win.el --- a/lisp/term/pc-win.el Thu Feb 08 17:46:58 1996 +0000 +++ b/lisp/term/pc-win.el Thu Feb 08 17:49:24 1996 +0000 @@ -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) ; ???