1
1

* editcmd.c (edit_completion_dialog): Code cleanup.

Этот коммит содержится в:
Roland Illig 2005-08-15 21:35:33 +00:00
родитель b4479c533d
Коммит 3b1fcf6792
2 изменённых файлов: 3 добавлений и 1 удалений

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

@ -2,6 +2,7 @@
* edit-widget.h: Changed bit fields of length 1 from signed to
unsigned.
* editcmd.c (edit_completion_dialog): Code cleanup.
2005-08-10 Pavel Roskin <proski@gnu.org>

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

@ -2811,7 +2811,8 @@ edit_completion_dialog (WEdit * edit, int max_len, int word_len,
/* fill the listbox with the completions */
for (i = 0; i < num_compl; i++)
listbox_add_item (compl_list, 0, 0, (char *) compl[i].text, NULL);
listbox_add_item (compl_list, LISTBOX_APPEND_AT_END, 0,
(char *) compl[i].text, NULL);
/* pop up the dialog */
run_dlg (compl_dlg);