Changeset ef56a67 for message.c


Ignore:
Timestamp:
Jun 22, 2003, 9:38:21 AM (21 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:
f1cbb7a
Parents:
3723f31
Message:
added the 'show view' command.
removed the style variable
 A style is now part of a view, the view command has been revamped
File:
1 edited

Legend:

Unmodified
Added
Removed
  • message.c

    rbe0a79f ref56a67  
    114114{
    115115  owl_style *s;
     116  owl_view *v;
    116117
    117118  if (m->invalid_format) {
     119    /* for now we assume there's jsut the one view and use that style */
     120    v=owl_global_get_current_view(&g);
     121    s=owl_view_get_style(v);
     122
    118123    owl_fmtext_free(&(m->fmtext));
    119124    owl_fmtext_init_null(&(m->fmtext));
    120     s=owl_global_get_current_style(&g);
    121125    owl_style_get_formattext(s, &(m->fmtext), m);
    122126    m->invalid_format=0;
Note: See TracChangeset for help on using the changeset viewer.