1
1

* editcmd.c: Warning fix for compilers that don't understand the

"const" keyword and variable size arrays.
Этот коммит содержится в:
Pavel Roskin 2002-11-11 08:06:01 +00:00
родитель 7f6b843a94
Коммит 4061502e82
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -1,3 +1,8 @@
2002-11-11 Pavel Roskin <proski@gnu.org>
* editcmd.c: Warning fix for compilers that don't understand the
"const" keyword and variable size arrays.
2002-11-06 Pavel Roskin <proski@gnu.org>
* editcmd.c (edit_save_file): Restore ownership before access

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

@ -2457,8 +2457,7 @@ static void edit_set_search_parameters (int rs, int rb, int rr, int rw, int rc)
}
const static int MAX_WORD_COMPLETIONS = 100; /* in listbox */
#define MAX_WORD_COMPLETIONS 100 /* in listbox */
/* collect the possible completions */
static int edit_collect_completions (WEdit *edit, long start,