]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct uniscribe_font_info): Include composite.h.
authorKenichi Handa <handa@m17n.org>
Fri, 29 Aug 2008 07:57:43 +0000 (07:57 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 29 Aug 2008 07:57:43 +0000 (07:57 +0000)
(uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.

src/w32uniscribe.c

index e987b112a672ea3e53fae36670532a74d07ea096..461903543d1fe5b15fcda34cc279b730a13457d7 100644 (file)
@@ -34,6 +34,7 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include "dispextern.h"
 #include "character.h"
 #include "charset.h"
+#include "composite.h"
 #include "fontset.h"
 #include "font.h"
 #include "w32font.h"
@@ -223,7 +224,7 @@ uniscribe_shape (lgstring)
   uniscribe_font = (struct uniscribe_font_info *) font;
 
   /* Get the chars from lgstring in a form we can use with uniscribe.  */
-  max_glyphs = nchars = LGSTRING_LENGTH (lgstring);
+  max_glyphs = nchars = LGSTRING_GLYPH_LEN (lgstring);
   done_glyphs = 0;
   chars = (wchar_t *) alloca (nchars * sizeof (wchar_t));
   for (i = 0; i < nchars; i++)