1
1

* editdraw.c (edit_status): Expand the filename field in the status

line to 16 characters even if the actual filename is shorter.
Этот коммит содержится в:
Roland Illig 2004-10-23 13:14:14 +00:00
родитель 11f8d4e2ea
Коммит 63cae58f20
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2004-10-23 Roland Illig <roland.illig@gmx.de>
* editdraw.c (edit_status): Expand the filename field in the status
line to 16 characters even if the actual filename is shorter.
2004-10-16 Roland Illig <roland.illig@gmx.de>
* syntax.c (read_one_line): Fixed SEGV when reading syntax file

Просмотреть файл

@ -102,6 +102,8 @@ edit_status (WEdit *edit)
if (edit->filename)
fname = edit->filename;
fname_len = strlen(fname);
if (fname_len < 16)
fname_len = 16;
if (fname_len + gap + status_len + 2 >= w) {
if (16 + gap + status_len + 2 >= w)