summaryrefslogtreecommitdiff
path: root/lisp/svg.el
diff options
context:
space:
mode:
authorAri Roponen <ari.roponen@gmail.com>2017-05-20 17:14:36 -0700
committerGlenn Morris <rgm@gnu.org>2017-05-20 17:14:36 -0700
commit547f78c813c7f792a892a2ee16664b133067f9bc (patch)
treee717f05759b770d7f34fdecfb82221456e085ed6 /lisp/svg.el
parent7f4e5ca8fb40ce13d7fd7979171ba87fe39cb254 (diff)
downloademacs-547f78c813c7f792a892a2ee16664b133067f9bc.tar.gz
* lisp/svg.el (svg-line): Fix x/y typo. (Bug#26953)
Diffstat (limited to 'lisp/svg.el')
-rw-r--r--lisp/svg.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/svg.el b/lisp/svg.el
index cb924f8163d..fc1a6d60e1a 100644
--- a/lisp/svg.el
+++ b/lisp/svg.el
@@ -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)))))