summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/lua-lgi-fix-pango.patch
blob: d8ffe00eb0fd1d3d4c8ece4027185ed8b891515b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Upstream-Status: https://github.com/lgi-devs/lgi/pull/342
---
 tests/pango.lua | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tests/pango.lua b/tests/pango.lua
index e20a6799..ea00b903 100644
--- a/tests/pango.lua
+++ b/tests/pango.lua
@@ -35,7 +35,6 @@ function pango.glyphstring()
       local offset = items[i].offset
       local length = items[i].length
       local analysis = items[i].analysis
-      local pgs = Pango.GlyphString()
-      Pango.shape(string.sub(s,1+offset), length, analysis, pgs)
+      local pgs = Pango.shape(string.sub(s,1+offset), length, analysis)
       -- Pull out individual glyphs with pgs.glyphs
       local glyphs = pgs.glyphs
       check(type(glyphs) == 'table')