diff options
author | vimboss <devnull@localhost> | 2006-04-21 22:12:41 +0000 |
---|---|---|
committer | vimboss <devnull@localhost> | 2006-04-21 22:12:41 +0000 |
commit | 418242e064b47b95bf78fa96cd4c6dc20991787a (patch) | |
tree | 35b6845dc38717148718ac5cf70553b8c2cb96d8 /src/gui_motif.c | |
parent | 610d7f01438d99836bfb703a2f752a3f9768be47 (diff) | |
download | vim-418242e064b47b95bf78fa96cd4c6dc20991787a.tar.gz |
Diffstat (limited to 'src/gui_motif.c')
-rw-r--r-- | src/gui_motif.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui_motif.c b/src/gui_motif.c index 9e28be2b..ccc97782 100644 --- a/src/gui_motif.c +++ b/src/gui_motif.c @@ -3359,8 +3359,9 @@ gui_mch_update_tabline(void) XtVaGetValues(tab, XmNlabelString, &label_str, NULL); if (XmStringGetLtoR(label_str, XmSTRING_DEFAULT_CHARSET, &label_cstr)) { - get_tabline_label(tp); - if (STRCMP(label_cstr, NameBuff) != 0) { + get_tabline_label(tp, FALSE); + if (STRCMP(label_cstr, NameBuff) != 0) + { XtVaSetValues(tab, XtVaTypedArg, XmNlabelString, XmRString, NameBuff, STRLEN(NameBuff) + 1, NULL); /* |