Changeset c55ad84
- Timestamp:
- Jan 12, 2008, 2:26:49 AM (17 years ago)
- Branches:
- master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- b7b4565
- Parents:
- f92080c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fmtext.c
rc1522ec rc55ad84 14 14 f->default_attrs = OWL_FMTEXT_ATTR_NONE; 15 15 f->default_fgcolor = OWL_COLOR_DEFAULT; 16 f->default_ fgcolor = OWL_COLOR_DEFAULT;16 f->default_bgcolor = OWL_COLOR_DEFAULT; 17 17 } 18 18 … … 25 25 f->default_attrs = OWL_FMTEXT_ATTR_NONE; 26 26 f->default_fgcolor = OWL_COLOR_DEFAULT; 27 f->default_ fgcolor = OWL_COLOR_DEFAULT;27 f->default_bgcolor = OWL_COLOR_DEFAULT; 28 28 } 29 29 … … 388 388 /* ptr1 now holds the starting point */ 389 389 390 /* copy the default attributes */ 391 out->default_attrs = in->default_attrs; 392 out->default_fgcolor = in->default_fgcolor; 393 out->default_bgcolor = in->default_bgcolor; 394 390 395 /* copy in the next 'lines' lines */ 391 396 if (lines < 1) return(-1); … … 416 421 char *ptr_s, *ptr_e, *ptr_c, *last; 417 422 int col, st, padding, chwidth; 423 424 /* copy the default attributes */ 425 out->default_attrs = in->default_attrs; 426 out->default_fgcolor = in->default_fgcolor; 427 out->default_bgcolor = in->default_bgcolor; 418 428 419 429 last=in->textbuff+in->textlen-1;
Note: See TracChangeset
for help on using the changeset viewer.