The following issue has been SUBMITTED. ====================================================================== https://www.austingroupbugs.net/view.php?id=1917 ====================================================================== Reported By: lanodan Assigned To: ====================================================================== Project: Online Pubs Issue ID: 1917 Category: Shell and Utilities Type: Error Severity: Editorial Priority: normal Status: New Name: Haelwenn (lanodan) Monnier Organization: User Reference: URL: https://pubs.opengroup.org/onlinepubs/9799919799/utilities/uuencode.html Section: uuencode ====================================================================== Date Submitted: 2025-03-25 06:05 UTC Last Modified: 2025-03-25 06:05 UTC ====================================================================== Summary: formatting error for uuencode historical algorithm code snippet Description: HTML edition got an extraneous '(XX' in the two middle lines: <pre> 0x20 + (( A >> 2 ) & 0x3F) 0x20 + (((A << 4) |'(XX' ((B >> 4) & 0xF)) & 0x3F) 0x20 + (((B << 2) |'(XX' ((C >> 6) & 0x3)) & 0x3F) 0x20 + (( C ) & 0x3F) </pre>
Desired Action: Make HTML edition correspond to PDF edition (page 3513, lines 119934-119937): <pre> 0x20 + (( A >> 2 ) & 0x3F) 0x20 + (((A << 4) | ((B >> 4) & 0xF)) & 0x3F) 0x20 + (((B << 2) | ((C >> 6) & 0x3)) & 0x3F) 0x20 + (( C ) & 0x3F) </pre> ====================================================================== Issue History Date Modified Username Field Change ====================================================================== 2025-03-25 06:05 lanodan New Issue ======================================================================
