Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug in StdStream.print #4180

Merged
merged 9 commits into from
Aug 26, 2022
Merged

Fix bug in StdStream.print #4180

merged 9 commits into from
Aug 26, 2022

Commits on Aug 21, 2022

  1. Fix unwanted indentation in StdStream.print

    When printing via `StdStream.print` strings containing the null
    terminator, we were just printing the string until the null terminator
    and replacing the unprinted characters by padding the printed string
    with space characters.
    
    This behavior made `String.size()` inconsistent with what `fprintf` was
    really printing.
    
    This behavior has been introduced in #1768, which ensure we respected
    the buffer size.
    
    Closes #4171
    leonardoce committed Aug 21, 2022
    Configuration menu
    Copy the full SHA
    9d0f44c View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2022

  1. Configuration menu
    Copy the full SHA
    83b7b1f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ef532e7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7d56599 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b50976c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6f9384d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    83b463a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b181ec7 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    84bdfda View commit details
    Browse the repository at this point in the history