diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-01-16 16:17:19 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-01-16 16:17:19 +0000 |
commit | d7cd2d8b4eb0e0b0e2bbe77d2fe48d4a0c353055 (patch) | |
tree | 4083b0992700eb54f26dad82fdc1c22f99ab902e /lisp/frame.el | |
parent | d2bde04f6ac6272a14bf453e914c867b9ed0a53d (diff) | |
download | emacs-d7cd2d8b4eb0e0b0e2bbe77d2fe48d4a0c353055.tar.gz |
(display-mm-height, display-mm-width): Fix typos in docstrings.
Diffstat (limited to 'lisp/frame.el')
-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." (defun display-mm-height (&optional display) "Return the height of DISPLAY's screen in millimeters. -System values can be overriden by `display-mm-dimensions-alist'. +System values can be overridden by `display-mm-dimensions-alist'. If the information is unavailable, value is nil." (and (memq (framep-on-display display) '(x w32 mac)) (or (cddr (assoc (or display (frame-parameter nil 'display)) @@ -1109,7 +1109,7 @@ If the information is unavailable, value is nil." (defun display-mm-width (&optional display) "Return the width of DISPLAY's screen in millimeters. -System values can be overriden by `display-mm-dimensions-alist'. +System values can be overridden by `display-mm-dimensions-alist'. If the information is unavailable, value is nil." (and (memq (framep-on-display display) '(x w32 mac)) (or (cadr (assoc (or display (frame-parameter nil 'display)) |