@@ -34,7 +34,6 @@ bool virtually_defined (string c, string name);
3434font smart_font_bis (string f, string v, string s, string sh, double sz,
3535 int hdpi, int vdpi);
3636
37-
3837smart_map
3938get_smart_map (tree fn) {
4039 string name= recompose (tuple_as_array (fn), " -" );
@@ -626,9 +625,9 @@ smart_font_rep::smart_font_rep (string name, font base_fn, font err_fn,
626625 fn[SUBFONT_MAIN] = adjust_subfont (base_fn);
627626 fn[SUBFONT_ERROR]= adjust_subfont (err_fn);
628627 this ->copy_math_pars (base_fn);
629- family_tokens = trimmed_tokenize (family, " ," );
630- given_font = logical_font (family, variant, series, rshape);
631- italic_prime_cached = false ;
628+ family_tokens = trimmed_tokenize (family, " ," );
629+ given_font = logical_font (family, variant, series, rshape);
630+ italic_prime_cached= false ;
632631 if (shape == " mathitalic" || shape == " mathupright" || shape == " mathshape" ) {
633632 if (is_math_family (mfam)) {
634633 rshape= " right" ;
@@ -915,9 +914,9 @@ smart_font_rep::resolve (string c, string fam, int attempt) {
915914 }
916915 array<string> a= trimmed_tokenize (fam, " =" );
917916 if (N (a) >= 2 ) {
918- fam = a[1 ];
919- array<string> b = tokenize (a[0 ], " " );
920- bool ok = is_wanted (c, fam, b, given_font);
917+ fam = a[1 ];
918+ array<string> b = tokenize (a[0 ], " " );
919+ bool ok= is_wanted (c, fam, b, given_font);
921920 if (!ok) {
922921 return -1 ;
923922 }
@@ -1060,16 +1059,16 @@ bool
10601059smart_font_rep::is_italic_prime (string c) {
10611060 if (c != " '" && c != " `" ) return false ;
10621061 if (italic_prime_cached) return italic_prime_result;
1063- string s= " <#2B9>" ;
1062+ string s= " <#2B9>" ;
10641063 if (c == " `" ) s= " <backprime>" ;
10651064 bool result= true ;
10661065 for (int i= 0 ; i < N (family_tokens); i++)
10671066 if (resolve (s, family_tokens[i], 1 ) >= 0 ) {
10681067 result= false ;
10691068 break ;
10701069 }
1071- italic_prime_cached = true ;
1072- italic_prime_result = result;
1070+ italic_prime_cached= true ;
1071+ italic_prime_result= result;
10731072 return result;
10741073}
10751074
0 commit comments