aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2008-04-04 07:59:20 +0000
committerJason Rumney2008-04-04 07:59:20 +0000
commit3187540effa794d27f69b2514223c1a82bc8e3e7 (patch)
tree34c2712858293acad9b7fd4ce1d0454cf5188ba6 /src
parent1b718df9f2cf8f481cca93205e40ab373809d50c (diff)
downloademacs-3187540effa794d27f69b2514223c1a82bc8e3e7.tar.gz
emacs-3187540effa794d27f69b2514223c1a82bc8e3e7.zip
(uniscribe_check_otf): Fix last change.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/w32uniscribe.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5ae4fc6beb8..312183e42aa 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12008-04-04 Jason Rumney <jasonr@gnu.org>
2
3 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
4
12008-04-03 Stefan Monnier <monnier@iro.umontreal.ca> 52008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination 7 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
diff --git a/src/w32uniscribe.c b/src/w32uniscribe.c
index ed29955efe9..2641aead054 100644
--- a/src/w32uniscribe.c
+++ b/src/w32uniscribe.c
@@ -565,7 +565,7 @@ int uniscribe_check_otf (font, otf_spec)
565 int i, retval = 0; 565 int i, retval = 0;
566 566
567 /* Check the spec is in the right format. */ 567 /* Check the spec is in the right format. */
568 if (!CONSP (otf_spec) || Flength (val) < 3) 568 if (!CONSP (otf_spec) || Flength (otf_spec) < 3)
569 return 0; 569 return 0;
570 570
571 /* Break otf_spec into its components. */ 571 /* Break otf_spec into its components. */