Mercurial > emacs
changeset 51210:491ca5acf5b3
[WINDOWSNT]: Move redefinition of FONT_WIDTH macro to
where it's used in x_list_fonts (for clarity).
(frame_update_line_height): Remove unused function; functionality
is now done directly when setting the default font in x_set_font.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Sat, 24 May 2003 22:09:13 +0000 |
parents | 880539128b51 |
children | 28ea05de2dc5 |
files | src/xfaces.c |
diffstat | 1 files changed, 8 insertions(+), 29 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xfaces.c Sat May 24 22:08:54 2003 +0000 +++ b/src/xfaces.c Sat May 24 22:09:13 2003 +0000 @@ -228,10 +228,6 @@ #define check_x check_w32 #define x_list_fonts w32_list_fonts #define GCGraphicsExposures 0 -/* For historic reasons, FONT_WIDTH refers to average width on W32, - not maximum as on X. Redefine here. */ -#undef FONT_WIDTH -#define FONT_WIDTH FONT_MAX_WIDTH #endif /* WINDOWSNT */ #ifdef MAC_OS @@ -1215,30 +1211,6 @@ /*********************************************************************** - Minimum font bounds - ***********************************************************************/ - -#ifdef HAVE_WINDOW_SYSTEM - -/* Update the line_height of frame F. Return non-zero if line height - changes. */ - -int -frame_update_line_height (f) - struct frame *f; -{ - int line_height, changed_p; - - line_height = FONT_HEIGHT (FRAME_FONT (f)); - changed_p = line_height != FRAME_LINE_HEIGHT (f); - FRAME_LINE_HEIGHT (f) = line_height; - return changed_p; -} - -#endif /* HAVE_WINDOW_SYSTEM */ - - -/*********************************************************************** Fonts ***********************************************************************/ @@ -2963,10 +2935,17 @@ ? NULL : FACE_FROM_ID (f, face_id)); +#ifdef WINDOWSNT +/* For historic reasons, FONT_WIDTH refers to average width on W32, + not maximum as on X. Redefine here. */ +#undef FONT_WIDTH +#define FONT_WIDTH FONT_MAX_WIDTH +#endif + if (face && face->font) size = FONT_WIDTH (face->font); else - size = FONT_WIDTH (FRAME_FONT (f)); + size = FONT_WIDTH (FRAME_FONT (f)); /* FRAME_COLUMN_WIDTH (f) */ if (!NILP (width)) size *= XINT (width);