diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/fontset.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5dda0430849..7d4d5e00df1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | * fontset.c (free_realized_fontset): Now static. | 3 | * fontset.c (free_realized_fontset): Now static. |
| 4 | (Fset_fontset_font): Rename local to avoid shadowing. | 4 | (Fset_fontset_font): Rename local to avoid shadowing. |
| 5 | (fontset_font): Mark local as initialized. | ||
| 5 | 6 | ||
| 6 | * xrdb.c: Include "xterm.h", to check x_load_resources's interface. | 7 | * xrdb.c: Include "xterm.h", to check x_load_resources's interface. |
| 7 | 8 | ||
diff --git a/src/fontset.c b/src/fontset.c index d732820c28a..3c156691b1b 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -713,7 +713,7 @@ fontset_find_font (Lisp_Object fontset, int c, struct face *face, int id, int fa | |||
| 713 | static Lisp_Object | 713 | static Lisp_Object |
| 714 | fontset_font (Lisp_Object fontset, int c, struct face *face, int id) | 714 | fontset_font (Lisp_Object fontset, int c, struct face *face, int id) |
| 715 | { | 715 | { |
| 716 | Lisp_Object rfont_def, default_rfont_def; | 716 | Lisp_Object rfont_def, default_rfont_def IF_LINT (= Qnil); |
| 717 | Lisp_Object base_fontset; | 717 | Lisp_Object base_fontset; |
| 718 | 718 | ||
| 719 | /* Try a font-group of FONTSET. */ | 719 | /* Try a font-group of FONTSET. */ |