1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

* 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)))))