freetype-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ft-devel] [patch] remove synonymous macro isdigok


From: Alexei Podtelezhnikov
Subject: [ft-devel] [patch] remove synonymous macro isdigok
Date: Wed, 21 Mar 2012 22:03:51 -0400

Two macros 'sbitset' and 'isdigok' in bdflib.c has recently become
synonymous. Quoting from the code:
Line 428:
#define sbitset( m, cc ) \
          ( m[(FT_Byte)(cc) >> 3]  & ( 1 << ( (cc) & 7 ) ) )
Line 845:
#define isdigok( m, d )  (m[(unsigned char)(d) >> 3] & ( 1 << ( (d) & 7 ) ) )

The attached patch removes 'isdigok' altogether.

Attachment: remove-isdigok.patch
Description: Text Data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]