Procházet zdrojové kódy

[Minor] Use unhex utility

tags/3.2
Vsevolod Stakhov před 2 roky
rodič
revize
2bcc9897a3
1 změnil soubory, kde provedl 2 přidání a 5 odebrání
  1. 2
    5
      lualib/lua_content/pdf.lua

+ 2
- 5
lualib/lua_content/pdf.lua Zobrazit soubor

@@ -181,17 +181,14 @@ local function generic_grammar_elts()

-- Helper functions
local function pdf_hexstring_unescape(s)
local function ue(cc)
return string.char(tonumber(cc, 16))
end
if #s % 2 == 0 then
-- Sane hex string
return s:gsub('..', ue)
return lua_util.unhex(s)
end

-- WTF hex string
-- Append '0' to it and unescape...
return s:sub(1, #s - 1):gsub('..' , ue) .. (s:sub(#s) .. '0'):gsub('..' , ue)
return lua_util.unhex(s:sub(1, #s - 1)) .. lua_util.unhex((s:sub(#s) .. '0'))
end

local function pdf_string_unescape(s)

Načítá se…
Zrušit
Uložit