diff options
| author | Kenichi Handa | 1999-05-04 05:45:36 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1999-05-04 05:45:36 +0000 |
| commit | 74848a963cfec7f149be7702981d9a84cac0f905 (patch) | |
| tree | 9c9cbc705afe0dc278c4fd23b8e885a7540259e2 /src | |
| parent | e05645eeb8fee9ee316418803d43d9ec1479e2ae (diff) | |
| download | emacs-74848a963cfec7f149be7702981d9a84cac0f905.tar.gz emacs-74848a963cfec7f149be7702981d9a84cac0f905.zip | |
(x_load_font): Fix typo (`>' -> `=').
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 2f705ec8803..ab4da0cc3d3 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -6843,7 +6843,7 @@ x_load_font (f, fontname, size) | |||
| 6843 | larger than the above value. */ | 6843 | larger than the above value. */ |
| 6844 | int max_height = font->max_bounds.ascent + font->max_bounds.descent; | 6844 | int max_height = font->max_bounds.ascent + font->max_bounds.descent; |
| 6845 | if (max_height > fontp->height) | 6845 | if (max_height > fontp->height) |
| 6846 | fontp->height > max_height; | 6846 | fontp->height = max_height; |
| 6847 | } | 6847 | } |
| 6848 | 6848 | ||
| 6849 | if (NILP (font_names)) | 6849 | if (NILP (font_names)) |