diff options
-rw-r--r-- | src/ChangeLog | 8 | ||||
-rw-r--r-- | src/w32font.c | 1 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a25296ba529..2480f8ff2bf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2008-06-12 Juanma Barranquero <lekktu@gmail.com> + + * w32font.c: Include ctype.h. + 2008-06-11 Jason Rumney <jasonr@gnu.org> * w32font.c (w32font_encode_char): Detect missing glyphs that are @@ -16,8 +20,8 @@ 2008-06-10 Jason Rumney <jasonr@gnu.org> - * w32uniscribe.c (add_opentype_font_name_to_list): Skip non unicode - fonts. + * w32uniscribe.c (add_opentype_font_name_to_list): + Skip non unicode fonts. 2008-06-10 Chong Yidong <cyd@stupidchicken.com> diff --git a/src/w32font.c b/src/w32font.c index 8945ced8c95..dc0612f7e67 100644 --- a/src/w32font.c +++ b/src/w32font.c @@ -19,6 +19,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #include <config.h> #include <windows.h> #include <math.h> +#include <ctype.h> #include "lisp.h" #include "w32term.h" |