diff options
| author | Dmitry Antipov | 2014-07-08 18:50:45 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-07-08 18:50:45 +0400 |
| commit | 96f17a2f73d1a29c7cdc279daa1fb7f1b7f58aff (patch) | |
| tree | eff4991614caccccefdc7d9b10f795728070159e /src/ChangeLog | |
| parent | d64a4984c147d0c4550aa1e9e3b9a5db10b3de6a (diff) | |
| download | emacs-96f17a2f73d1a29c7cdc279daa1fb7f1b7f58aff.tar.gz emacs-96f17a2f73d1a29c7cdc279daa1fb7f1b7f58aff.zip | |
* font.c (font_build_object) [HAVE_XFT || HAVE_FREETYPE || HAVE_NS]:
New function, with an intention to avoid code duplication between
a few font drivers.
* font.h (font_build_object) [HAVE_XFT || HAVE_FREETYPE || HAVE_NS]:
Add prototype.
* ftfont.c (ftfont_open):
* macfont.m (macfont_open):
* xftfont.c (xftfont_open): Use it.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8e79414feaf..7a29f8d803b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -5,7 +5,16 @@ | |||
| 5 | Avoid Faref and assume that args are always valid. This helps to | 5 | Avoid Faref and assume that args are always valid. This helps to |
| 6 | speedup search, which is especially important for a huge buffers. | 6 | speedup search, which is especially important for a huge buffers. |
| 7 | * lisp.h (char_table_translate): Remove prototype. | 7 | * lisp.h (char_table_translate): Remove prototype. |
| 8 | |||
| 8 | * nsfont.m (nsfont_close): Free glyphs and metrics arrays as well. | 9 | * nsfont.m (nsfont_close): Free glyphs and metrics arrays as well. |
| 10 | * font.c (font_build_object) [HAVE_XFT || HAVE_FREETYPE || HAVE_NS]: | ||
| 11 | New function, with an intention to avoid code duplication between | ||
| 12 | a few font drivers. | ||
| 13 | * font.h (font_build_object) [HAVE_XFT || HAVE_FREETYPE || HAVE_NS]: | ||
| 14 | Add prototype. | ||
| 15 | * ftfont.c (ftfont_open): | ||
| 16 | * macfont.m (macfont_open): | ||
| 17 | * xftfont.c (xftfont_open): Use it. | ||
| 9 | 18 | ||
| 10 | 2014-07-08 Paul Eggert <eggert@cs.ucla.edu> | 19 | 2014-07-08 Paul Eggert <eggert@cs.ucla.edu> |
| 11 | 20 | ||