aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-01-16 16:17:19 +0000
committerJuanma Barranquero2008-01-16 16:17:19 +0000
commitd7cd2d8b4eb0e0b0e2bbe77d2fe48d4a0c353055 (patch)
tree4083b0992700eb54f26dad82fdc1c22f99ab902e
parentd2bde04f6ac6272a14bf453e914c867b9ed0a53d (diff)
downloademacs-d7cd2d8b4eb0e0b0e2bbe77d2fe48d4a0c353055.tar.gz
emacs-d7cd2d8b4eb0e0b0e2bbe77d2fe48d4a0c353055.zip
(display-mm-height, display-mm-width): Fix typos in docstrings.
-rw-r--r--lisp/frame.el4
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.
1102System values can be overriden by `display-mm-dimensions-alist'. 1102System values can be overridden by `display-mm-dimensions-alist'.
1103If the information is unavailable, value is nil." 1103If 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.
1112System values can be overriden by `display-mm-dimensions-alist'. 1112System values can be overridden by `display-mm-dimensions-alist'.
1113If the information is unavailable, value is nil." 1113If 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))