1
1

prompt: return FALSE for non-editing functions also in the tiny version

This fixes https://savannah.gnu.org/bugs/?62942.

Bug existed since commit 2f25b6a6 from four days ago.
Этот коммит содержится в:
Benno Schulenberg 2022-08-23 15:31:02 +02:00
родитель 2c5459a1b7
Коммит ee1f8a0494

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

@ -325,9 +325,10 @@ bool handle_editing(functionptrtype function)
else if (function == paste_text) {
if (cutbuffer != NULL)
paste_into_answer();
} else
return FALSE;
}
#endif
else
return FALSE;
/* Don't handle any handled function again. */
return TRUE;