* lisp/svg.el (svg-line): Fix x/y typo. (Bug#26953)

This commit is contained in:
Ari Roponen 2017-05-20 17:14:36 -07:00 committed by Glenn Morris
parent 7f4e5ca8fb
commit 547f78c813

View file

@ -107,8 +107,8 @@ X/Y denote the center of the ellipse."
svg
(dom-node 'line
`((x1 . ,x1)
(x2 . ,y1)
(y1 . ,x2)
(x2 . ,x2)
(y1 . ,y1)
(y2 . ,y2)
,@(svg--arguments svg args)))))