aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2014-11-15 11:25:16 +0200
committerEli Zaretskii2014-11-15 11:25:16 +0200
commit71e866c066f719daf7e96a32113a482be269c534 (patch)
tree2a67b02dcf15d59952d080addbfc84e3d4ed4a17 /src
parentd5a1d3607b8092f10594bdb065b40c1800fab4da (diff)
downloademacs-71e866c066f719daf7e96a32113a482be269c534.tar.gz
emacs-71e866c066f719daf7e96a32113a482be269c534.zip
src/window.h (WINDOW_FRAME_LINE_HEIGHT): Fix a typo in a comment.
Reported by Kelly Dean <kelly@prtime.org>.
Diffstat (limited to 'src')
-rw-r--r--src/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h
index b9c2b1f5ba8..4c76f0b7df9 100644
--- a/src/window.h
+++ b/src/window.h
@@ -468,7 +468,7 @@ wset_next_buffers (struct window *w, Lisp_Object val)
468#define WINDOW_FRAME_COLUMN_WIDTH(W) \ 468#define WINDOW_FRAME_COLUMN_WIDTH(W) \
469 (FRAME_COLUMN_WIDTH (WINDOW_XFRAME ((W)))) 469 (FRAME_COLUMN_WIDTH (WINDOW_XFRAME ((W))))
470 470
471/* Return the canonical column width of the frame of window W. */ 471/* Return the canonical line height of the frame of window W. */
472 472
473#define WINDOW_FRAME_LINE_HEIGHT(W) \ 473#define WINDOW_FRAME_LINE_HEIGHT(W) \
474 (FRAME_LINE_HEIGHT (WINDOW_XFRAME ((W)))) 474 (FRAME_LINE_HEIGHT (WINDOW_XFRAME ((W))))