projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f4e5ca
)
* lisp/svg.el (svg-line): Fix x/y typo. (Bug#26953)
author
Ari Roponen
<ari.roponen@gmail.com>
Sun, 21 May 2017 00:14:36 +0000
(17:14 -0700)
committer
Glenn Morris
<rgm@gnu.org>
Sun, 21 May 2017 00:14:36 +0000
(17:14 -0700)
lisp/svg.el
patch
|
blob
|
history
diff --git
a/lisp/svg.el
b/lisp/svg.el
index cb924f8163d7b474e114dd54ee85488c172ad16b..fc1a6d60e1a53834c2dd25cf479f07abe7df5270 100644
(file)
--- 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)))))