From 547f78c813c7f792a892a2ee16664b133067f9bc Mon Sep 17 00:00:00 2001 From: Ari Roponen Date: Sat, 20 May 2017 17:14:36 -0700 Subject: [PATCH] * lisp/svg.el (svg-line): Fix x/y typo. (Bug#26953) --- lisp/svg.el | 4 ++-- 1 file 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))))) -- 2.39.2