diff options
| author | Paul Eggert | 2011-03-09 17:44:38 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-03-09 17:44:38 -0800 |
| commit | cc6e5db1ae708b81f02945f6c6dbe11e92fa1d46 (patch) | |
| tree | db185338cf38f3c953a207dbfac1faac6264b2fb /src | |
| parent | 7519b8cd68973132dba3fa8dd4ecde8daa8cff71 (diff) | |
| download | emacs-cc6e5db1ae708b81f02945f6c6dbe11e92fa1d46.tar.gz emacs-cc6e5db1ae708b81f02945f6c6dbe11e92fa1d46.zip | |
* fontset.c (fontset_font): Mark local as initialized.
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. */ |