Variable: display-mm-dimensions-alist
display-mm-dimensions-alist is a customizable variable defined in
frame.el.gz.
Value
nil
Documentation
Alist for specifying screen dimensions in millimeters.
The functions display-mm-height and display-mm-width consult
this list before asking the system.
Each element has the form (DISPLAY . (WIDTH . HEIGHT)), e.g.
(":0.0" . (287 . 215)).
If display is t, it specifies dimensions for all graphical displays
not explicitly specified.
This variable was added, or its default value changed, in Emacs 22.1.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defcustom display-mm-dimensions-alist nil
"Alist for specifying screen dimensions in millimeters.
The functions `display-mm-height' and `display-mm-width' consult
this list before asking the system.
Each element has the form (DISPLAY . (WIDTH . HEIGHT)), e.g.
\(\":0.0\" . (287 . 215)).
If `display' is t, it specifies dimensions for all graphical displays
not explicitly specified."
:version "22.1"
:type '(alist :key-type (choice (string :tag "Display name")
(const :tag "Default" t))
:value-type (cons :tag "Dimensions"
(integer :tag "Width")
(integer :tag "Height")))
:group 'frames)