diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-06-27 20:52:52 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-06-27 20:52:52 +0200 |
| commit | 431dea6871f88766e66ccaba5775303121a514ed (patch) | |
| tree | 65caf7f1e32a7fd9dfb8f0627235b34779c4b1f4 /vis.c | |
| parent | dfe9937786a5183952bb464901da9ba951e71652 (diff) | |
| parent | bfcf2210da1f83d4138425febf96d3afb60fdfac (diff) | |
| download | vis-431dea6871f88766e66ccaba5775303121a514ed.tar.gz vis-431dea6871f88766e66ccaba5775303121a514ed.tar.xz | |
Merge branch 'show-eof' of https://github.com/p-e-w/vis
Conflicts:
view.c
view.h
Diffstat (limited to 'vis.c')
| -rw-r--r-- | vis.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -427,7 +427,7 @@ static void window_draw_eof(Win *win) { return; CellStyle style = win->ui->style_get(win->ui, UI_STYLE_EOF); for (Line *l = view_lines_last(view)->next; l; l = l->next) { - strcpy(l->cells[0].data, "~"); + strcpy(l->cells[0].data, view_symbol_eof_get(view)); l->cells[0].style = style; } } |
