Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
12 days | Update copyright dates to include 2025 | Tom Tromey | 1 | -1/+1 | |
This updates the copyright headers to include 2025. I did this by running gdb/copyright.py and then manually modifying a few files as noted by the script. Approved-By: Eli Zaretskii <eliz@gnu.org> | |||||
2024-12-12 | Fix formatting in gdb.ada/lazy-string.exp | Tom Tromey | 1 | -3/+3 | |
This fixes a formatting issue and corrects a comment in the new gdb.ada/lazy-string.exp. I meant to do this in an earlier patch but forgot to save. | |||||
2024-12-12 | Use generic_printstr from ada_language::printstr | Tom Tromey | 1 | -0/+43 | |
Currently, if you create a lazy string while in Ada language mode, the string will be rendered strangely, like: "["d0"]["9f"]["d1"]["80"]["d0"]["b8"]... This happens because ada_printstr does not really handle UTF-8 decoding. This patch changes ada_language::printstr to use generic_printstr when UTF-8 is used. Note that this code could probably be improved some more -- the current patch only addresses the narrow case of the Python API. I've filed a follow-up bug (PR ada/32413) for the remaining changes. Approved-By: Andrew Burgess <aburgess@redhat.com> |