]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/svg.el (svg-line): Fix x/y typo. (Bug#26953)
authorAri Roponen <ari.roponen@gmail.com>
Sun, 21 May 2017 00:14:36 +0000 (17:14 -0700)
committerGlenn Morris <rgm@gnu.org>
Sun, 21 May 2017 00:14:36 +0000 (17:14 -0700)
lisp/svg.el

index cb924f8163d7b474e114dd54ee85488c172ad16b..fc1a6d60e1a53834c2dd25cf479f07abe7df5270 100644 (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)))))