From: Eli Zaretskii Date: Sat, 15 Nov 2014 09:25:16 +0000 (+0200) Subject: src/window.h (WINDOW_FRAME_LINE_HEIGHT): Fix a typo in a comment. X-Git-Tag: emacs-24.4.90~223 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=71e866c066f719daf7e96a32113a482be269c534;p=emacs.git src/window.h (WINDOW_FRAME_LINE_HEIGHT): Fix a typo in a comment. Reported by Kelly Dean . --- 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) #define WINDOW_FRAME_COLUMN_WIDTH(W) \ (FRAME_COLUMN_WIDTH (WINDOW_XFRAME ((W)))) -/* Return the canonical column width of the frame of window W. */ +/* Return the canonical line height of the frame of window W. */ #define WINDOW_FRAME_LINE_HEIGHT(W) \ (FRAME_LINE_HEIGHT (WINDOW_XFRAME ((W))))