Changeset ca9142e for functions.c


Ignore:
Timestamp:
Apr 18, 2004, 12:13:40 PM (20 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
93991e6
Parents:
818a073
Message:
Improved 'show colors' with non-colored labels
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    r789462a rca9142e  
    28932893
    28942894  owl_fmtext_init_null(&fm);
     2895  owl_fmtext_append_normal(&fm, "default: ");
    28952896  owl_fmtext_append_normal_color(&fm, "default\n", OWL_COLOR_DEFAULT);
     2897
     2898  owl_fmtext_append_normal(&fm,"red:      ");
    28962899  owl_fmtext_append_normal_color(&fm, "red\n", OWL_COLOR_RED);
     2900
     2901  owl_fmtext_append_normal(&fm,"green:    ");
    28972902  owl_fmtext_append_normal_color(&fm, "green\n", OWL_COLOR_GREEN);
     2903
     2904  owl_fmtext_append_normal(&fm,"yellow:   ");
    28982905  owl_fmtext_append_normal_color(&fm, "yellow\n", OWL_COLOR_YELLOW);
     2906
     2907  owl_fmtext_append_normal(&fm,"blue:     ");
    28992908  owl_fmtext_append_normal_color(&fm, "blue\n", OWL_COLOR_BLUE);
     2909
     2910  owl_fmtext_append_normal(&fm,"magenta:  ");
    29002911  owl_fmtext_append_normal_color(&fm, "magenta\n", OWL_COLOR_MAGENTA);
     2912
     2913  owl_fmtext_append_normal(&fm,"cyan:     ");
    29012914  owl_fmtext_append_normal_color(&fm, "cyan\n", OWL_COLOR_CYAN);
     2915
     2916  owl_fmtext_append_normal(&fm,"white:    ");
    29022917  owl_fmtext_append_normal_color(&fm, "white\n", OWL_COLOR_WHITE);
    29032918
Note: See TracChangeset for help on using the changeset viewer.