diff options
| author | Paul Eggert | 2011-03-16 01:22:13 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-16 01:22:13 -0700 |
| commit | 7b81e2d023093bf21cf867ec42ffff3ee7114cf5 (patch) | |
| tree | defd1cdfd0a5131a1b7f2ce5899372b917093265 /src | |
| parent | 89bc529a4c8578046172d80776abcf3fadc0dbe8 (diff) | |
| download | emacs-7b81e2d023093bf21cf867ec42ffff3ee7114cf5.tar.gz emacs-7b81e2d023093bf21cf867ec42ffff3ee7114cf5.zip | |
* font.c (font_delete_unmatched): Now static.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/font.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ba1bd03265b..63e23749374 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | * font.c (font_unparse_xlfd): Don't mix pointers to variables with | 3 | * font.c (font_unparse_xlfd): Don't mix pointers to variables with |
| 4 | pointers to constants. | 4 | pointers to constants. |
| 5 | (font_parse_fcname): Remove unused vars. | 5 | (font_parse_fcname): Remove unused vars. |
| 6 | (font_delete_unmatched): Now static. | ||
| 6 | 7 | ||
| 7 | * fns.c (require_nesting_list, require_unwind): Now static. | 8 | * fns.c (require_nesting_list, require_unwind): Now static. |
| 8 | (Ffillarray): Rename locals to avoid shadowing. | 9 | (Ffillarray): Rename locals to avoid shadowing. |
diff --git a/src/font.c b/src/font.c index 16812255e87..25e2968df7f 100644 --- a/src/font.c +++ b/src/font.c | |||
| @@ -2600,7 +2600,7 @@ static Lisp_Object scratch_font_spec, scratch_font_prefer; | |||
| 2600 | (2) doesn't match with any regexps in Vface_ignored_fonts (if non-nil). | 2600 | (2) doesn't match with any regexps in Vface_ignored_fonts (if non-nil). |
| 2601 | */ | 2601 | */ |
| 2602 | 2602 | ||
| 2603 | Lisp_Object | 2603 | static Lisp_Object |
| 2604 | font_delete_unmatched (Lisp_Object vec, Lisp_Object spec, int size) | 2604 | font_delete_unmatched (Lisp_Object vec, Lisp_Object spec, int size) |
| 2605 | { | 2605 | { |
| 2606 | Lisp_Object entity, val; | 2606 | Lisp_Object entity, val; |