diff options
| author | Kenichi Handa | 2008-02-17 02:02:33 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-02-17 02:02:33 +0000 |
| commit | 08c447f96e35ec60a252926ca64ad0efd81049cb (patch) | |
| tree | 73ea07ca470d79297e2cdbc304fa349610a21730 /src | |
| parent | 74170e38796889b4e3491ee9044dbeb3ea641ec4 (diff) | |
| download | emacs-08c447f96e35ec60a252926ca64ad0efd81049cb.tar.gz emacs-08c447f96e35ec60a252926ca64ad0efd81049cb.zip | |
* xterm.h (struct x_display_info): New member font.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xterm.h b/src/xterm.h index 9fa2a36ae08..a563fb9701f 100644 --- a/src/xterm.h +++ b/src/xterm.h | |||
| @@ -176,6 +176,11 @@ struct x_display_info | |||
| 176 | /* The current capacity of x_font_table. */ | 176 | /* The current capacity of x_font_table. */ |
| 177 | int font_table_size; | 177 | int font_table_size; |
| 178 | 178 | ||
| 179 | #ifdef USE_FONT_BACKEND | ||
| 180 | /* This provides a commonly used Font ID on this display. */ | ||
| 181 | XFontStruct *font; | ||
| 182 | #endif | ||
| 183 | |||
| 179 | /* Minimum width over all characters in all fonts in font_table. */ | 184 | /* Minimum width over all characters in all fonts in font_table. */ |
| 180 | int smallest_char_width; | 185 | int smallest_char_width; |
| 181 | 186 | ||