Changeset 2992

Show
Ignore:
Timestamp:
2003年02月12日 21時41分14秒 (6 years ago)
Author:
miyoshi
Message:

(w32_score_logfont): Compare the slant component if
the font is not scalable.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • work/cvs2svn/src/ChangeLog.Meadow

    r2989 r2992  
    112003-02-12  MIYOSHI Masanori  <miyoshi@boreas.dti.ne.jp> 
     2 
     3        * mw32font.c (w32_score_logfont): Compare the slant component if 
     4        the font is not scalable. 
    25 
    36        * mw32fns.c (mw32_WndProc): Move the codes that handle 
  • work/cvs2svn/src/mw32font.c

    r2987 r2992  
    11231123  else if (EQ(key, Qitalic)) 
    11241124    { 
    1125       if ((NILP(val) && (plc->lf.lfItalic)) 
    1126           || (!NILP(val) && !(plc->lf.lfItalic))) 
    1127         score = 0; 
     1125      if (plc->type == 0 
     1126          && ((NILP(val) && plc->lf.lfItalic) 
     1127              || (!NILP(val) && !plc->lf.lfItalic))) 
     1128        score = 0; 
    11281129    } 
    11291130  else if (EQ(key, Qfixed)) 
     
    24422443and the order is the same with CANDIDATES.") 
    24432444     (requests, candidates) 
     2445     Lisp_Object requests, candidates; 
    24442446{ 
    24452447  logfont_candidates *plc, *plc2;