Update comment. PR for wcwidth_standalone might be a bit

pull/9678/head
Jacob Sandlund 2025-11-24 09:14:03 -05:00
parent 808d31f6ee
commit 61c7381452
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ fn computeWidth(
// This condition is to get the previous behavior of uucode's `wcwidth`,
// returning the width of a code point in a grapheme cluster but with the
// exception to treat emoji modifiers as width 2 so they can be displayed
// in isolation. PRs immediately to follow will take advantage of the new
// uucode `wcwidth_standalone` vs `wcwidth_zero_in_grapheme` split.
// in isolation. PRs to follow will take advantage of the new uucode
// `wcwidth_standalone` vs `wcwidth_zero_in_grapheme` split.
if (data.wcwidth_zero_in_grapheme and !data.is_emoji_modifier) {
data.width = 0;
} else {