diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-11-16 18:47:25 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-11-16 18:47:25 +0100 |
commit | 7877f37394a0bea045c8d0faf7db7a7e1b4ccdc1 (patch) | |
tree | 334fa246f6537c6fbdb73be78c873416b2b9bf44 /src/w32uniscribe.c | |
parent | 10649b828d6b2c7bfc41dde3386c980bcd48c0b3 (diff) | |
download | emacs-7877f37394a0bea045c8d0faf7db7a7e1b4ccdc1.tar.gz |
Fix typos.
Diffstat (limited to 'src/w32uniscribe.c')
-rw-r--r-- | src/w32uniscribe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/w32uniscribe.c b/src/w32uniscribe.c index f6347bb88f7..36197b3b28a 100644 --- a/src/w32uniscribe.c +++ b/src/w32uniscribe.c @@ -507,7 +507,7 @@ uniscribe_encode_char (struct font *font, int c) if (SUCCEEDED (result) && nglyphs == 1) { /* Some fonts return .notdef glyphs instead of failing. - (Truetype spec reserves glyph code 0 for .notdef) */ + (TrueType spec reserves glyph code 0 for .notdef) */ if (glyphs[0]) code = glyphs[0]; } @@ -961,4 +961,3 @@ syms_of_w32uniscribe (void) register_font_driver (&uniscribe_font_driver, NULL); } - |