-
Notifications
You must be signed in to change notification settings - Fork 10.1k
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
Handle 'space' character correctly in MacRomanEncoding (bug 878026) #4569
Conversation
/botio-linux preview |
From: Bot.io (Linux)ReceivedCommand cmd_preview from @Snuffleupagus received. Current queue size: 0 Live output at: http://107.21.233.14:8877/a10a71131aab410/output.txt |
From: Bot.io (Linux)SuccessFull output at http://107.21.233.14:8877/a10a71131aab410/output.txt Total script time: 0.40 mins Published
|
/botio test |
From: Bot.io (Linux)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://107.21.233.14:8877/55644d29e69b0cf/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://107.22.172.223:8877/0c1748018661960/output.txt |
From: Bot.io (Windows)SuccessFull output at http://107.22.172.223:8877/0c1748018661960/output.txt Total script time: 21.90 mins
|
From: Bot.io (Linux)SuccessFull output at http://107.21.233.14:8877/55644d29e69b0cf/output.txt Total script time: 25.87 mins
|
Nice, thanks /botio makeref |
From: Bot.io (Windows)ReceivedCommand cmd_makeref from @yurydelendik received. Current queue size: 0 Live output at: http://107.22.172.223:8877/9f878da9c7b4f86/output.txt |
From: Bot.io (Linux)ReceivedCommand cmd_makeref from @yurydelendik received. Current queue size: 0 Live output at: http://107.21.233.14:8877/94796b8c50cc21a/output.txt |
From: Bot.io (Windows)SuccessFull output at http://107.22.172.223:8877/9f878da9c7b4f86/output.txt Total script time: 22.21 mins
|
From: Bot.io (Linux)SuccessFull output at http://107.21.233.14:8877/94796b8c50cc21a/output.txt Total script time: 25.98 mins
|
Handle 'space' character correctly in MacRomanEncoding (bug 878026)
According to the specification, using MacRomanEncoding the "space" character could also be encoded as 312 (= 202 decimal), see Note 6 here: http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/PDF32000_2008.pdf#page=664.
Currently
MacRomanEncoding[202] = ''
(fonts.js#L161), and given fonts.js#L4210 this explains why the "Ecircumflex" character is rendered.Fixes https://bugzilla.mozilla.org/show_bug.cgi?id=878026.