diff options
| author | Paul Eggert | 2011-03-18 19:45:11 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-18 19:45:11 -0700 |
| commit | e2be39f6afd7c24f3436740711fd1aeeb3fce3df (patch) | |
| tree | 87cf96d89f12c1e6346a0bce30a761fd5ae3b879 /src | |
| parent | c9735e30cac759cd796d6b6eb2d41b4d46894a08 (diff) | |
| download | emacs-e2be39f6afd7c24f3436740711fd1aeeb3fce3df.tar.gz emacs-e2be39f6afd7c24f3436740711fd1aeeb3fce3df.zip | |
* xfont.c (xfont_list_family): Mark var as initialized.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/xfont.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index dbf5c94a87c..b242465cef3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2011-03-19 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-03-19 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * xfont.c (xfont_list_family): Mark var as initialized. | ||
| 4 | |||
| 3 | * xml.c (make_dom): Now static. | 5 | * xml.c (make_dom): Now static. |
| 4 | 6 | ||
| 5 | * composite.c (composition_compute_stop_pos): Rename local to | 7 | * composite.c (composition_compute_stop_pos): Rename local to |
diff --git a/src/xfont.c b/src/xfont.c index f8aace3663c..3e0fcd2cd75 100644 --- a/src/xfont.c +++ b/src/xfont.c | |||
| @@ -629,7 +629,7 @@ xfont_list_family (Lisp_Object frame) | |||
| 629 | char **names; | 629 | char **names; |
| 630 | int num_fonts, i; | 630 | int num_fonts, i; |
| 631 | Lisp_Object list; | 631 | Lisp_Object list; |
| 632 | char *last_family; | 632 | char *last_family IF_LINT (= 0); |
| 633 | int last_len; | 633 | int last_len; |
| 634 | 634 | ||
| 635 | BLOCK_INPUT; | 635 | BLOCK_INPUT; |