diff options
| author | Juanma Barranquero | 2008-06-12 10:40:29 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-06-12 10:40:29 +0000 |
| commit | 0500dcc9fe30c857a34286fb5cde4974b4957c2f (patch) | |
| tree | 993c98b973abcf258940f3fad191c345b31de8f6 | |
| parent | 9b86baeef1f8fd1b8a40ae70cbd137909b2f2d06 (diff) | |
| download | emacs-0500dcc9fe30c857a34286fb5cde4974b4957c2f.tar.gz emacs-0500dcc9fe30c857a34286fb5cde4974b4957c2f.zip | |
Include ctype.h.
| -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 @@ | |||
| 1 | 2008-06-12 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * w32font.c: Include ctype.h. | ||
| 4 | |||
| 1 | 2008-06-11 Jason Rumney <jasonr@gnu.org> | 5 | 2008-06-11 Jason Rumney <jasonr@gnu.org> |
| 2 | 6 | ||
| 3 | * w32font.c (w32font_encode_char): Detect missing glyphs that are | 7 | * w32font.c (w32font_encode_char): Detect missing glyphs that are |
| @@ -16,8 +20,8 @@ | |||
| 16 | 20 | ||
| 17 | 2008-06-10 Jason Rumney <jasonr@gnu.org> | 21 | 2008-06-10 Jason Rumney <jasonr@gnu.org> |
| 18 | 22 | ||
| 19 | * w32uniscribe.c (add_opentype_font_name_to_list): Skip non unicode | 23 | * w32uniscribe.c (add_opentype_font_name_to_list): |
| 20 | fonts. | 24 | Skip non unicode fonts. |
| 21 | 25 | ||
| 22 | 2008-06-10 Chong Yidong <cyd@stupidchicken.com> | 26 | 2008-06-10 Chong Yidong <cyd@stupidchicken.com> |
| 23 | 27 | ||
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/>. */ | |||
| 19 | #include <config.h> | 19 | #include <config.h> |
| 20 | #include <windows.h> | 20 | #include <windows.h> |
| 21 | #include <math.h> | 21 | #include <math.h> |
| 22 | #include <ctype.h> | ||
| 22 | 23 | ||
| 23 | #include "lisp.h" | 24 | #include "lisp.h" |
| 24 | #include "w32term.h" | 25 | #include "w32term.h" |