diff options
Diffstat (limited to 'test/unit/viml/helpers.lua')
-rw-r--r-- | test/unit/viml/helpers.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/unit/viml/helpers.lua b/test/unit/viml/helpers.lua index 70949e8278..aeb886a66f 100644 --- a/test/unit/viml/helpers.lua +++ b/test/unit/viml/helpers.lua @@ -52,11 +52,6 @@ local function new_pstate(strings) return ret end -local function intchar2lua(ch) - ch = tonumber(ch) - return (20 <= ch and ch < 127) and ('%c'):format(ch) or ch -end - local function pline2lua(pline) return ffi.string(pline.data, pline.size) end |