* editcmd.c (edit_replace_prompt): Fix warning with 'unused' label_len.
Этот коммит содержится в:
родитель
3881b6e2b4
Коммит
26e400227a
@ -1,3 +1,7 @@
|
||||
2004-12-02 Pavel S. Shirshov <me@pavelsh.pp.ru>
|
||||
|
||||
* editcmd.c (edit_replace_prompt): Fix warning with 'unused' label_len.
|
||||
|
||||
2004-12-01 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* editcmd.c: Introduced a type edit_getbyte_fn to get rid of
|
||||
|
@ -1183,7 +1183,8 @@ edit_replace_prompt (WEdit * edit, char *replace_text, int xpos, int ypos)
|
||||
|
||||
GString *label_text = g_string_new (_(" Replace with: "));
|
||||
if (*replace_text) {
|
||||
size_t label_len = label_text->len;
|
||||
size_t label_len;
|
||||
label_len = label_text->len;
|
||||
g_string_append (label_text, replace_text);
|
||||
convert_to_display (label_text->str + label_len);
|
||||
}
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user