diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-21 22:12:41 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-21 22:12:41 +0000 |
commit | 57657d85c6c3d812e99b5e5d5161c07c66ac7dc7 (patch) | |
tree | 35b6845dc38717148718ac5cf70553b8c2cb96d8 /src/gui_motif.c | |
parent | fc1421eb53b17aa58b01a9c07ba2007eb4a1aa4f (diff) | |
download | vim-git-57657d85c6c3d812e99b5e5d5161c07c66ac7dc7.tar.gz |
updated for version 7.0e05v7.0e05
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 9e28be2b0..ccc97782d 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); /* |