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.
This commit is contained in:
parent
2c5459a1b7
commit
ee1f8a0494
@ -325,9 +325,10 @@ bool handle_editing(functionptrtype function)
|
|||||||
else if (function == paste_text) {
|
else if (function == paste_text) {
|
||||||
if (cutbuffer != NULL)
|
if (cutbuffer != NULL)
|
||||||
paste_into_answer();
|
paste_into_answer();
|
||||||
} else
|
}
|
||||||
return FALSE;
|
|
||||||
#endif
|
#endif
|
||||||
|
else
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
/* Don't handle any handled function again. */
|
/* Don't handle any handled function again. */
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user