From: Ari Roponen Date: Sun, 21 May 2017 00:14:36 +0000 (-0700) Subject: * lisp/svg.el (svg-line): Fix x/y typo. (Bug#26953) X-Git-Tag: emacs-26.0.90~521^2~334 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=547f78c813c7f792a892a2ee16664b133067f9bc;p=emacs.git * lisp/svg.el (svg-line): Fix x/y typo. (Bug#26953) --- 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)))))