-
Notifications
You must be signed in to change notification settings - Fork 6.2k
8354968: Replace unicode sequences in comment text with UTF-8 characters #24727
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
Conversation
|
👋 Welcome back ihse! A progress list of the required criteria for merging this PR into |
|
@magicus This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be: You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 4 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
Webrevs
|
|
Now that JDK-8301971 is committed, this PR is ready to be integrated. |
naotoj
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks for the changes
|
Mailing list message from Jonathan Gibbons on compiler-dev: As a point of history, a long time ago (including Peter Ah?'s time), it Last time I looked, there was still some discrepancies in the makefiles -- Jon On 4/17/25 7:48 AM, Magnus Ihse Bursie wrote: |
|
/integrate |
|
Going to push as commit a3e094e.
Your commit was automatically rebased without conflicts. |
As part of the UTF-8 cleaning up done in JDK-8301971, I looked at where and how we are using unicode sequences (
\uXXXX). In several string literals, I think the unicode sequences still has merit, if they improve clarity or readability of the code. Some instances are more gray zone. But the places where it does not make sense at all are in comments, as part of fluid text comments. There they are just disruptive and not helpful at all. I tried to locate all such places (but I might have missed places, I did not do a proper lexical analysis to find comments) and fix them.99% of this fix is to turn poor
Peter von der Ah\u00e9intoPeter von der Ahé. 😆I checked some random samples on when this was introduced to see if there were some particular commit that mistreated the encoding, but they have been there since the original release of the open JDK source code.
There are likely many more places where direct UTF-8 encoded characters is preferable to unicode sequences, but this seemed like a safe and trivial first start.
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/24727/head:pull/24727$ git checkout pull/24727Update a local copy of the PR:
$ git checkout pull/24727$ git pull https://git.openjdk.org/jdk.git pull/24727/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 24727View PR using the GUI difftool:
$ git pr show -t 24727Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/24727.diff
Using Webrev
Link to Webrev Comment