diff options
Diffstat (limited to 'src/gui_athena.c')
-rw-r--r-- | src/gui_athena.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_athena.c b/src/gui_athena.c index df1367f83..c86703eeb 100644 --- a/src/gui_athena.c +++ b/src/gui_athena.c @@ -2245,7 +2245,7 @@ gui_mch_dialog(type, title, message, buttons, dfltbutton, textfield) for (next = p; *next; ++next) { if (*next == DLG_HOTKEY_CHAR) - mch_memmove(next, next + 1, STRLEN(next)); + STRMOVE(next, next + 1); if (*next == DLG_BUTTON_SEP) { *next++ = NUL; |