1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Merge bidi paragraphOverride fix from 'pre-0.77'.

This commit is contained in:
Simon Tatham 2022-05-24 17:49:32 +01:00
commit 187fea7610

View File

@ -3602,6 +3602,7 @@ void do_bidi(BidiContext *ctx, bidi_char *text, size_t textlen)
#ifdef REMOVE_FORMATTING_CHARACTERS
abort(); /* can't use the standard algorithm in a live terminal */
#else
ctx->paragraphOverride = ON;
do_bidi_new(ctx, text, textlen);
#endif
}