mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-10 07:08:21 +08:00
Merge branch 'GP-831_ryanmkurtz_PR-2788_rafalh_ida6-exporter-non-ascii-fix' into GP-831_ryanmkurtz_ida-PRs
This commit is contained in:
@@ -261,7 +261,7 @@ class XmlExporter:
|
||||
elif ch == '\'' : return "'"
|
||||
elif ch == '"' : return """
|
||||
elif ch == '\x7F': return ''
|
||||
elif ord(ch) > 0x7F: return '&#x' + format((ord(ch),"x")) + ";"
|
||||
elif ord(ch) > 0x7F: return '&#x' + format(ord(ch),"x") + ";"
|
||||
return ch
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user