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

bidi.c: correct comments.

I accidentally deleted the original author's name in my rewrite, which
was unnecessarily unfriendly given that some of their code is still
here. Also I made a thinko in my explanation of the U+00AD problem.
This commit is contained in:
Simon Tatham 2021-10-10 22:55:41 +01:00
parent 93ba74579a
commit 54930cf784

View File

@ -3,9 +3,9 @@
* algorithms for PuTTY. * algorithms for PuTTY.
* *
* Original version written and kindly contributed to this code base * Original version written and kindly contributed to this code base
* by Arabeyes. The bidi part was almost completely rewritten in 2021 * by Ahmad Khalifa of Arabeyes. The bidi part was almost completely
* by Simon Tatham to bring it up to date, but the shaping part is * rewritten in 2021 by Simon Tatham to bring it up to date, but the
* still the one by the original authors. * shaping part is still the one by the original authors.
* *
* Implementation notes: * Implementation notes:
* *
@ -80,7 +80,7 @@
* *
* This would be fine, if it were not for the fact that - as far as I * This would be fine, if it were not for the fact that - as far as I
* can see - _exactly one_ Unicode code point in the discarded * can see - _exactly one_ Unicode code point in the discarded
* category has a wcwidth() of more than 1, namely U+00AD SOFT HYPHEN * category has a wcwidth() of more than 0, namely U+00AD SOFT HYPHEN
* which is a printing character for terminal purposes but has a bidi * which is a printing character for terminal purposes but has a bidi
* class of BN. * class of BN.
* *