diff options
| -rw-r--r-- | lisp/frame.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 56f7cbbe937..6b3ced3f986 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -1099,7 +1099,7 @@ displays not explicitely specified." | |||
| 1099 | 1099 | ||
| 1100 | (defun display-mm-height (&optional display) | 1100 | (defun display-mm-height (&optional display) |
| 1101 | "Return the height of DISPLAY's screen in millimeters. | 1101 | "Return the height of DISPLAY's screen in millimeters. |
| 1102 | System values can be overriden by `display-mm-dimensions-alist'. | 1102 | System values can be overridden by `display-mm-dimensions-alist'. |
| 1103 | If the information is unavailable, value is nil." | 1103 | If the information is unavailable, value is nil." |
| 1104 | (and (memq (framep-on-display display) '(x w32 mac)) | 1104 | (and (memq (framep-on-display display) '(x w32 mac)) |
| 1105 | (or (cddr (assoc (or display (frame-parameter nil 'display)) | 1105 | (or (cddr (assoc (or display (frame-parameter nil 'display)) |
| @@ -1109,7 +1109,7 @@ If the information is unavailable, value is nil." | |||
| 1109 | 1109 | ||
| 1110 | (defun display-mm-width (&optional display) | 1110 | (defun display-mm-width (&optional display) |
| 1111 | "Return the width of DISPLAY's screen in millimeters. | 1111 | "Return the width of DISPLAY's screen in millimeters. |
| 1112 | System values can be overriden by `display-mm-dimensions-alist'. | 1112 | System values can be overridden by `display-mm-dimensions-alist'. |
| 1113 | If the information is unavailable, value is nil." | 1113 | If the information is unavailable, value is nil." |
| 1114 | (and (memq (framep-on-display display) '(x w32 mac)) | 1114 | (and (memq (framep-on-display display) '(x w32 mac)) |
| 1115 | (or (cadr (assoc (or display (frame-parameter nil 'display)) | 1115 | (or (cadr (assoc (or display (frame-parameter nil 'display)) |