ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/defaultfont.C
(Generate patch)

Comparing rxvt-unicode/src/defaultfont.C (file contents):
Revision 1.35 by pcg, Thu Mar 4 20:09:01 2004 UTC vs.
Revision 1.36 by pcg, Fri Mar 5 04:43:41 2004 UTC

311 311
312 XSetForeground (d.display->display, GC, r->PixColors[fg]); 312 XSetForeground (d.display->display, GC, r->PixColors[fg]);
313 313
314 while (len--) 314 while (len--)
315 { 315 {
316 compose_char *cc;
316 text_t t = *text++; 317 text_t t = *text++;
317 318
318 // is it in our linedrawing table? 319 // is it in our linedrawing table?
319 if (t >= 0x2500 & t <= 0x2580 && linedraw_cmds[t - 0x2500]) 320 if (t >= 0x2500 & t <= 0x2580 && linedraw_cmds[t - 0x2500])
320 { 321 {
349 } 350 }
350 351
351 gcv.line_width = 0; 352 gcv.line_width = 0;
352 XChangeGC (d.display->display, GC, GCLineWidth, &gcv); 353 XChangeGC (d.display->display, GC, GCLineWidth, &gcv);
353 } 354 }
354 else if (IS_COMPOSE (t)) 355 else if (IS_COMPOSE (t) && (cc = rxvt_composite[t]))
355 { 356 {
356 const compose_char &cc = rxvt_composite[t]; 357 (*fs)[fs->find_font (cc->c1)]->draw (d, x, y, &(t = cc->c1), 1, fg, bg);
357 (void)0; //D ADD pseudo handling here 358 if (cc->c2 != NOCHAR)
359 (*fs)[fs->find_font (cc->c2)]->draw (d, x, y, &(t = cc->c2), 1, fg, -1);
358 } 360 }
359 else 361 else
360 switch (t) 362 switch (t)
361 { 363 {
362 case ZERO_WIDTH_CHAR: 364 case ZERO_WIDTH_CHAR:
1026 f = new rxvt_font_x11; 1028 f = new rxvt_font_x11;
1027 } 1029 }
1028 else 1030 else
1029 f = new rxvt_font_x11; 1031 f = new rxvt_font_x11;
1030 1032
1033 f->fs = this;
1031 f->set_term (r); 1034 f->set_term (r);
1032 f->set_name (strdup (name)); 1035 f->set_name (strdup (name));
1033 1036
1034 f->cs = cs; 1037 f->cs = cs;
1035 f->loaded = false; 1038 f->loaded = false;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines