diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-12 13:48:28 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-12 13:48:28 +0200 |
| commit | 50813b0e99321ba5c60ea4bc8c16d19519801446 (patch) | |
| tree | 3bbcdfaedca6a9d529f02e90bebbda5bc893bdc6 /config.def.h | |
| parent | 6df6386c3af1420d9b0d676d5b9da660ab6f99d4 (diff) | |
| download | vis-50813b0e99321ba5c60ea4bc8c16d19519801446.tar.gz vis-50813b0e99321ba5c60ea4bc8c16d19519801446.tar.xz | |
Rename text_filename to text_filename_get
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index d38351c..80eaf13 100644 --- a/config.def.h +++ b/config.def.h @@ -67,7 +67,7 @@ static void statusbar(EditorWin *win) { window_cursor_getxy(win->win, &line, &col); wattrset(win->statuswin, focused ? A_REVERSE|A_BOLD : A_REVERSE); mvwhline(win->statuswin, 0, 0, ' ', win->width); - mvwprintw(win->statuswin, 0, 0, "%s %s", text_filename(win->text), + mvwprintw(win->statuswin, 0, 0, "%s %s", text_filename_get(win->text), text_modified(win->text) ? "[+]" : ""); char buf[win->width + 1]; int len = snprintf(buf, win->width, "%d, %d", line, col); |
