* editcmd.c (edit_replace_prompt): Warning fix.

This commit is contained in:
Pavel Roskin 2001-05-18 19:25:23 +00:00
parent 8a025d6efa
commit 8841b6cc5f
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-05-18 Pavel Roskin <proski@gnu.org>
* editcmd.c (edit_replace_prompt): Warning fix.
2001-02-26 Pavel Roskin <proski@gnu.org>
* editcmd.c (edit_delete_macro_cmd) [MIDNIGHT]: Don't use

View File

@ -1665,6 +1665,8 @@ int edit_replace_prompt (WEdit * edit, char *replace_text, int xpos, int ypos)
return B_SKIP_REPLACE;
if (!strcmp (s, "Replace"))
return B_ENTER;
/* Shouldn't ever reach this point */
return B_CANCEL;
}
#else