emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 547f78c: * lisp/svg.el (svg-line): Fix x/y typo. (B


From: Glenn Morris
Subject: [Emacs-diffs] master 547f78c: * lisp/svg.el (svg-line): Fix x/y typo. (Bug#26953)
Date: Sat, 20 May 2017 20:14:53 -0400 (EDT)

branch: master
commit 547f78c813c7f792a892a2ee16664b133067f9bc
Author: Ari Roponen <address@hidden>
Commit: Glenn Morris <address@hidden>

    * 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 cb924f8..fc1a6d6 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)))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]