Changeset 2992
- Timestamp:
- 2003年02月12日 21時41分14秒 (6 years ago)
- Files:
-
- work/cvs2svn/src/ChangeLog.Meadow (modified) (1 diff)
- work/cvs2svn/src/mw32font.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
work/cvs2svn/src/ChangeLog.Meadow
r2989 r2992 1 1 2003-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. 2 5 3 6 * mw32fns.c (mw32_WndProc): Move the codes that handle work/cvs2svn/src/mw32font.c
r2987 r2992 1123 1123 else if (EQ(key, Qitalic)) 1124 1124 { 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; 1128 1129 } 1129 1130 else if (EQ(key, Qfixed)) … … 2442 2443 and the order is the same with CANDIDATES.") 2443 2444 (requests, candidates) 2445 Lisp_Object requests, candidates; 2444 2446 { 2445 2447 logfont_candidates *plc, *plc2;
