From 9193259cf236a7db4c1e1ca9e15ad53998d272ce Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Tue, 10 Dec 2013 13:24:07 +0100 Subject: [PATCH] [autofit] s/DFLT/NONE/, s/dflt/none/. --- ChangeLog | 4 ++++ src/autofit/afdummy.c | 4 ++-- src/autofit/afdummy.h | 2 +- src/autofit/afglobal.c | 2 +- src/autofit/afglobal.h | 2 +- src/autofit/afloader.c | 2 +- src/autofit/afscript.h | 2 +- 7 files changed, 11 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index ff31596c2..c79257f18 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-12-10 Werner Lemberg + + [autofit] s/DFLT/NONE/, s/dflt/none/. + 2013-12-10 Werner Lemberg [autofit] s/AF_SCRIPT_NONE/AF_SCRIPT_UNASSIGNED/. diff --git a/src/autofit/afdummy.c b/src/autofit/afdummy.c index aaa034d9f..b2b3a2012 100644 --- a/src/autofit/afdummy.c +++ b/src/autofit/afdummy.c @@ -69,9 +69,9 @@ AF_DEFINE_SCRIPT_CLASS( - af_dflt_script_class, + af_none_script_class, - AF_SCRIPT_DFLT, + AF_SCRIPT_NONE, (AF_Blue_Stringset)0, AF_WRITING_SYSTEM_DUMMY, diff --git a/src/autofit/afdummy.h b/src/autofit/afdummy.h index bc34dddaf..9a4d3c2d3 100644 --- a/src/autofit/afdummy.h +++ b/src/autofit/afdummy.h @@ -31,7 +31,7 @@ FT_BEGIN_HEADER AF_DECLARE_WRITING_SYSTEM_CLASS( af_dummy_writing_system_class ) - AF_DECLARE_SCRIPT_CLASS( af_dflt_script_class ) + AF_DECLARE_SCRIPT_CLASS( af_none_script_class ) /* */ diff --git a/src/autofit/afglobal.c b/src/autofit/afglobal.c index 4d6b9c8cc..c2151af43 100644 --- a/src/autofit/afglobal.c +++ b/src/autofit/afglobal.c @@ -276,7 +276,7 @@ /* if we have a forced script (via `options'), use it, */ /* otherwise look into `glyph_scripts' array */ - if ( script == AF_SCRIPT_DFLT || script + 1 >= AF_SCRIPT_MAX ) + if ( script == AF_SCRIPT_NONE || script + 1 >= AF_SCRIPT_MAX ) script = (AF_Script)( globals->glyph_scripts[gindex] & AF_SCRIPT_UNASSIGNED ); diff --git a/src/autofit/afglobal.h b/src/autofit/afglobal.h index 124c76f11..c01b47414 100644 --- a/src/autofit/afglobal.h +++ b/src/autofit/afglobal.h @@ -48,7 +48,7 @@ FT_BEGIN_HEADER #ifdef AF_CONFIG_OPTION_CJK #define AF_SCRIPT_FALLBACK AF_SCRIPT_HANI #else -#define AF_SCRIPT_FALLBACK AF_SCRIPT_DFLT +#define AF_SCRIPT_FALLBACK AF_SCRIPT_NONE #endif /* a bit mask indicating an uncovered glyph */ #define AF_SCRIPT_UNASSIGNED 0x7F diff --git a/src/autofit/afloader.c b/src/autofit/afloader.c index b49f8c096..400b01e19 100644 --- a/src/autofit/afloader.c +++ b/src/autofit/afloader.c @@ -530,7 +530,7 @@ if ( !error ) { AF_ScriptMetrics metrics; - FT_UInt options = AF_SCRIPT_DFLT; + FT_UInt options = AF_SCRIPT_NONE; #ifdef FT_OPTION_AUTOFIT2 diff --git a/src/autofit/afscript.h b/src/autofit/afscript.h index be0169a83..32ec2ca6a 100644 --- a/src/autofit/afscript.h +++ b/src/autofit/afscript.h @@ -24,7 +24,7 @@ SCRIPT( cyrl, CYRL, "Cyrillic" ) SCRIPT( deva, DEVA, "Indic scripts" ) - SCRIPT( dflt, DFLT, "no script" ) + SCRIPT( none, NONE, "no script" ) SCRIPT( grek, GREK, "Greek" ) SCRIPT( hani, HANI, "CJKV ideographs" ) SCRIPT( hebr, HEBR, "Hebrew" )