File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -177,8 +177,8 @@ Drawable_clear_descent_crossing_caches( Handle self)
177177 }
178178}
179179
180- int *
181- Drawable_call_get_glyph_descents ( Handle self , unsigned int from , unsigned int to )
180+ static int *
181+ call_get_glyph_descents ( Handle self , unsigned int from , unsigned int to )
182182{
183183 dmARGS ;
184184 int i , j , breakout , len = to - from + 1 ;
@@ -267,7 +267,7 @@ query_descent_range( Handle self, int base)
267267
268268 ret = (int * ) Drawable_find_in_cache ( var -> glyph_descents , base );
269269 if ( ret == NULL ) {
270- ret = Drawable_call_get_glyph_descents ( self , BASE_FROM (base ), BASE_TO (base ));
270+ ret = call_get_glyph_descents ( self , BASE_FROM (base ), BASE_TO (base ));
271271 if ( ret == NULL )
272272 return NULL ;
273273 if ( !Drawable_fill_cache (& (var -> glyph_descents ), base , ret )) {
You can’t perform that action at this time.
0 commit comments