summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@src.gnome.org>2004-07-27 13:12:19 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2004-07-27 13:12:19 +0000
commit5097b36584291475c7effdc7b2a561daa1ca246f (patch)
tree8f4ef17a671b9384fc59637af50dcb2bc20c0748
parenta4a5b647109820aafe6c6646887c74e33f15a484 (diff)
downloadpango-5097b36584291475c7effdc7b2a561daa1ca246f.tar.gz
Remove the unused parameter from the IN_CURITEM() and IN_CURGLYPH macros.
* pango/opentype/ftxgpos.c: Remove the unused parameter from the IN_CURITEM() and IN_CURGLYPH macros.
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-1-105
-rw-r--r--ChangeLog.pre-1-65
-rw-r--r--ChangeLog.pre-1-85
-rw-r--r--pango/opentype/ftxgpos.c68
-rw-r--r--pango/opentype/ftxgsub.c2
6 files changed, 55 insertions, 35 deletions
diff --git a/ChangeLog b/ChangeLog
index 36592a4a..3bb9620a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jul 27 09:11:40 2004 Behdad Esfahbod <pango@behdad.org>
+
+ * pango/opentype/ftxgpos.c: Remove the unused parameter
+ from the IN_CURITEM() and IN_CURGLYPH macros.
+
Tue Jul 27 06:35:25 2004 Behdad Esfahbod <pango@behdad.org>
* pango/opentype/otlbuffer.c (otl_buffer_copy_output_glyph):
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index 36592a4a..3bb9620a 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,3 +1,8 @@
+Tue Jul 27 09:11:40 2004 Behdad Esfahbod <pango@behdad.org>
+
+ * pango/opentype/ftxgpos.c: Remove the unused parameter
+ from the IN_CURITEM() and IN_CURGLYPH macros.
+
Tue Jul 27 06:35:25 2004 Behdad Esfahbod <pango@behdad.org>
* pango/opentype/otlbuffer.c (otl_buffer_copy_output_glyph):
diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6
index 36592a4a..3bb9620a 100644
--- a/ChangeLog.pre-1-6
+++ b/ChangeLog.pre-1-6
@@ -1,3 +1,8 @@
+Tue Jul 27 09:11:40 2004 Behdad Esfahbod <pango@behdad.org>
+
+ * pango/opentype/ftxgpos.c: Remove the unused parameter
+ from the IN_CURITEM() and IN_CURGLYPH macros.
+
Tue Jul 27 06:35:25 2004 Behdad Esfahbod <pango@behdad.org>
* pango/opentype/otlbuffer.c (otl_buffer_copy_output_glyph):
diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8
index 36592a4a..3bb9620a 100644
--- a/ChangeLog.pre-1-8
+++ b/ChangeLog.pre-1-8
@@ -1,3 +1,8 @@
+Tue Jul 27 09:11:40 2004 Behdad Esfahbod <pango@behdad.org>
+
+ * pango/opentype/ftxgpos.c: Remove the unused parameter
+ from the IN_CURITEM() and IN_CURGLYPH macros.
+
Tue Jul 27 06:35:25 2004 Behdad Esfahbod <pango@behdad.org>
* pango/opentype/otlbuffer.c (otl_buffer_copy_output_glyph):
diff --git a/pango/opentype/ftxgpos.c b/pango/opentype/ftxgpos.c
index 72dc60d7..06517325 100644
--- a/pango/opentype/ftxgpos.c
+++ b/pango/opentype/ftxgpos.c
@@ -60,8 +60,8 @@
#define IN_GLYPH( pos ) (buffer->in_string[(pos)].gindex)
#define IN_ITEM( pos ) (&buffer->in_string[(pos)])
-#define IN_CURGLYPH( pos ) (buffer->in_string[(pos) + buffer->in_pos].gindex)
-#define IN_CURITEM( pos ) (&buffer->in_string[(pos) + buffer->in_pos])
+#define IN_CURGLYPH() (buffer->in_string[buffer->in_pos].gindex)
+#define IN_CURITEM() (&buffer->in_string[buffer->in_pos])
#define IN_PROPERTIES( pos ) (buffer->in_string[(pos)].properties)
#define IN_LIGID( pos ) (buffer->in_string[(pos)].ligID)
#define IN_COMPONENT( pos ) (buffer->in_string[(pos)].component)
@@ -1047,10 +1047,10 @@
if ( context_length != 0xFFFF && context_length < 1 )
return TTO_Err_Not_Covered;
- if ( CHECK_Property( gpos->gdef, IN_CURITEM( 0 ), flags, &property ) )
+ if ( CHECK_Property( gpos->gdef, IN_CURITEM(), flags, &property ) )
return error;
- error = Coverage_Index( &sp->Coverage, IN_CURGLYPH( 0 ), &index );
+ error = Coverage_Index( &sp->Coverage, IN_CURGLYPH(), &index );
if ( error )
return error;
@@ -1536,7 +1536,7 @@
if ( !pvr )
return TTO_Err_Invalid_GPOS_SubTable;
- glyph2 = IN_CURGLYPH( 0 );
+ glyph2 = IN_CURGLYPH();
for ( numpvr = ppf1->PairSet[index].PairValueCount;
numpvr;
@@ -1575,7 +1575,7 @@
&cl1, NULL );
if ( error && error != TTO_Err_Not_Covered )
return error;
- error = Get_Class( &ppf2->ClassDef2, IN_CURGLYPH( 0 ),
+ error = Get_Class( &ppf2->ClassDef2, IN_CURGLYPH(),
&cl2, NULL );
if ( error && error != TTO_Err_Not_Covered )
return error;
@@ -1609,10 +1609,10 @@
if ( context_length != 0xFFFF && context_length < 2 )
return TTO_Err_Not_Covered;
- if ( CHECK_Property( gpos->gdef, IN_CURITEM( 0 ), flags, &property ) )
+ if ( CHECK_Property( gpos->gdef, IN_CURITEM(), flags, &property ) )
return error;
- error = Coverage_Index( &pp->Coverage, IN_CURGLYPH( 0 ), &index );
+ error = Coverage_Index( &pp->Coverage, IN_CURGLYPH(), &index );
if ( error )
return error;
@@ -1621,7 +1621,7 @@
first_pos = buffer->in_pos;
(buffer->in_pos)++;
- while ( CHECK_Property( gpos->gdef, IN_CURITEM( 0 ),
+ while ( CHECK_Property( gpos->gdef, IN_CURITEM(),
flags, &property ) )
{
if ( error && error != TTO_Err_Not_Covered )
@@ -1822,7 +1822,7 @@
/* Glyphs not having the right GDEF properties will be ignored, i.e.,
gpi->last won't be reset (contrary to user defined properties). */
- if ( CHECK_Property( gpos->gdef, IN_CURITEM( 0 ), flags, &property ) )
+ if ( CHECK_Property( gpos->gdef, IN_CURITEM(), flags, &property ) )
return error;
/* We don't handle mark glyphs here. According to Andrei, this isn't
@@ -1834,7 +1834,7 @@
return TTO_Err_Not_Covered;
}
- error = Coverage_Index( &cp->Coverage, IN_CURGLYPH( 0 ), &index );
+ error = Coverage_Index( &cp->Coverage, IN_CURGLYPH(), &index );
if ( error )
{
gpi->last = 0xFFFF;
@@ -1969,7 +1969,7 @@
/* Get_Anchor() returns TTO_Err_Not_Covered if there is no anchor
table. */
- error = Get_Anchor( gpi, &eer->EntryAnchor, IN_CURGLYPH( 0 ),
+ error = Get_Anchor( gpi, &eer->EntryAnchor, IN_CURGLYPH(),
&entry_x, &entry_y );
if ( error == TTO_Err_Not_Covered )
goto end;
@@ -1999,7 +1999,7 @@
}
end:
- error = Get_Anchor( gpi, &eer->ExitAnchor, IN_CURGLYPH( 0 ),
+ error = Get_Anchor( gpi, &eer->ExitAnchor, IN_CURGLYPH(),
&exit_x, &exit_y );
if ( error == TTO_Err_Not_Covered )
gpi->last = 0xFFFF;
@@ -2249,11 +2249,11 @@
if ( flags & IGNORE_BASE_GLYPHS )
return TTO_Err_Not_Covered;
- if ( CHECK_Property( gpos->gdef, IN_CURITEM( 0 ),
+ if ( CHECK_Property( gpos->gdef, IN_CURITEM(),
flags, &property ) )
return error;
- error = Coverage_Index( &mbp->MarkCoverage, IN_CURGLYPH( 0 ),
+ error = Coverage_Index( &mbp->MarkCoverage, IN_CURGLYPH(),
&mark_index );
if ( error )
return error;
@@ -2310,7 +2310,7 @@
br = &ba->BaseRecord[base_index];
base_anchor = &br->BaseAnchor[class];
- error = Get_Anchor( gpi, mark_anchor, IN_CURGLYPH( 0 ),
+ error = Get_Anchor( gpi, mark_anchor, IN_CURGLYPH(),
&x_mark_value, &y_mark_value );
if ( error )
return error;
@@ -2659,9 +2659,9 @@
if ( flags & IGNORE_LIGATURES )
return TTO_Err_Not_Covered;
- mark_glyph = IN_CURGLYPH( 0 );
+ mark_glyph = IN_CURGLYPH();
- if ( CHECK_Property( gpos->gdef, IN_CURITEM( 0 ), flags, &property ) )
+ if ( CHECK_Property( gpos->gdef, IN_CURITEM(), flags, &property ) )
return error;
error = Coverage_Index( &mlp->MarkCoverage, mark_glyph, &mark_index );
@@ -2737,7 +2737,7 @@
cr = &lat->ComponentRecord[comp_index];
lig_anchor = &cr->LigatureAnchor[class];
- error = Get_Anchor( gpi, mark_anchor, IN_CURGLYPH( 0 ),
+ error = Get_Anchor( gpi, mark_anchor, IN_CURGLYPH(),
&x_mark_value, &y_mark_value );
if ( error )
return error;
@@ -2996,11 +2996,11 @@
if ( flags & IGNORE_MARKS )
return TTO_Err_Not_Covered;
- if ( CHECK_Property( gpos->gdef, IN_CURITEM( 0 ),
+ if ( CHECK_Property( gpos->gdef, IN_CURITEM(),
flags, &property ) )
return error;
- error = Coverage_Index( &mmp->Mark1Coverage, IN_CURGLYPH( 0 ),
+ error = Coverage_Index( &mmp->Mark1Coverage, IN_CURGLYPH(),
&mark1_index );
if ( error )
return error;
@@ -3052,7 +3052,7 @@
m2r = &ma2->Mark2Record[mark2_index];
mark2_anchor = &m2r->Mark2Anchor[class];
- error = Get_Anchor( gpi, mark1_anchor, IN_CURGLYPH( 0 ),
+ error = Get_Anchor( gpi, mark1_anchor, IN_CURGLYPH(),
&x_mark1_value, &y_mark1_value );
if ( error )
return error;
@@ -3852,10 +3852,10 @@
gdef = gpos->gdef;
- if ( CHECK_Property( gdef, IN_CURITEM( 0 ), flags, &property ) )
+ if ( CHECK_Property( gdef, IN_CURITEM(), flags, &property ) )
return error;
- error = Coverage_Index( &cpf1->Coverage, IN_CURGLYPH( 0 ), &index );
+ error = Coverage_Index( &cpf1->Coverage, IN_CURGLYPH(), &index );
if ( error )
return error;
@@ -3922,21 +3922,21 @@
gdef = gpos->gdef;
- if ( CHECK_Property( gdef, IN_CURITEM( 0 ), flags, &property ) )
+ if ( CHECK_Property( gdef, IN_CURITEM(), flags, &property ) )
return error;
/* Note: The coverage table in format 2 doesn't give an index into
anything. It just lets us know whether or not we need to
do any lookup at all. */
- error = Coverage_Index( &cpf2->Coverage, IN_CURGLYPH( 0 ), &index );
+ error = Coverage_Index( &cpf2->Coverage, IN_CURGLYPH(), &index );
if ( error )
return error;
if ( ALLOC_ARRAY( classes, cpf2->MaxContextLength, FT_UShort ) )
return error;
- error = Get_Class( &cpf2->ClassDef, IN_CURGLYPH( 0 ),
+ error = Get_Class( &cpf2->ClassDef, IN_CURGLYPH(),
&classes[0], NULL );
if ( error && error != TTO_Err_Not_Covered )
goto End;
@@ -4024,7 +4024,7 @@
gdef = gpos->gdef;
- if ( CHECK_Property( gdef, IN_CURITEM( 0 ), flags, &property ) )
+ if ( CHECK_Property( gdef, IN_CURITEM(), flags, &property ) )
return error;
if ( context_length != 0xFFFF && context_length < cpf3->GlyphCount )
@@ -5124,10 +5124,10 @@
gdef = gpos->gdef;
- if ( CHECK_Property( gdef, IN_CURITEM( 0 ), flags, &property ) )
+ if ( CHECK_Property( gdef, IN_CURITEM(), flags, &property ) )
return error;
- error = Coverage_Index( &ccpf1->Coverage, IN_CURGLYPH( 0 ), &index );
+ error = Coverage_Index( &ccpf1->Coverage, IN_CURGLYPH(), &index );
if ( error )
return error;
@@ -5265,14 +5265,14 @@
gdef = gpos->gdef;
- if ( CHECK_Property( gdef, IN_CURITEM( 0 ), flags, &property ) )
+ if ( CHECK_Property( gdef, IN_CURITEM(), flags, &property ) )
return error;
/* Note: The coverage table in format 2 doesn't give an index into
anything. It just lets us know whether or not we need to
do any lookup at all. */
- error = Coverage_Index( &ccpf2->Coverage, IN_CURGLYPH( 0 ), &index );
+ error = Coverage_Index( &ccpf2->Coverage, IN_CURGLYPH(), &index );
if ( error )
return error;
@@ -5288,7 +5288,7 @@
goto End2;
known_lookahead_classes = 0;
- error = Get_Class( &ccpf2->InputClassDef, IN_CURGLYPH( 0 ),
+ error = Get_Class( &ccpf2->InputClassDef, IN_CURGLYPH(),
&input_classes[0], NULL );
if ( error && error != TTO_Err_Not_Covered )
goto End1;
@@ -5456,7 +5456,7 @@
gdef = gpos->gdef;
- if ( CHECK_Property( gdef, IN_CURITEM( 0 ), flags, &property ) )
+ if ( CHECK_Property( gdef, IN_CURITEM(), flags, &property ) )
return error;
bgc = ccpf3->BacktrackGlyphCount;
diff --git a/pango/opentype/ftxgsub.c b/pango/opentype/ftxgsub.c
index 3312c6c3..04dc466e 100644
--- a/pango/opentype/ftxgsub.c
+++ b/pango/opentype/ftxgsub.c
@@ -41,7 +41,7 @@
#define IN_GLYPH( pos ) buffer->in_string[(pos)].gindex
#define IN_ITEM( pos ) (&buffer->in_string[(pos)])
#define IN_CURGLYPH() buffer->in_string[buffer->in_pos].gindex
-#define IN_CURITEM( ) (&buffer->in_string[buffer->in_pos])
+#define IN_CURITEM() (&buffer->in_string[buffer->in_pos])
#define IN_PROPERTIES( pos ) buffer->in_string[(pos)].properties
#define IN_LIGID( pos ) buffer->in_string[(pos)].ligID