| 511 |
511 |
| 512 void gnt_text_view_append_text_with_tag(GntTextView *view, const char *text, |
512 void gnt_text_view_append_text_with_tag(GntTextView *view, const char *text, |
| 513 GntTextFormatFlags flags, const char *tagname) |
513 GntTextFormatFlags flags, const char *tagname) |
| 514 { |
514 { |
| 515 GntWidget *widget = GNT_WIDGET(view); |
515 GntWidget *widget = GNT_WIDGET(view); |
| 516 int fl = 0; |
516 chtype fl = 0; |
| 517 const char *start, *end; |
517 const char *start, *end; |
| 518 GList *list = view->list; |
518 GList *list = view->list; |
| 519 GntTextLine *line; |
519 GntTextLine *line; |
| 520 int len; |
520 int len; |
| 521 gboolean has_scroll = !(view->flags & GNT_TEXT_VIEW_NO_SCROLL); |
521 gboolean has_scroll = !(view->flags & GNT_TEXT_VIEW_NO_SCROLL); |