projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
292fcd2
)
Avoid inserting extra space in SVG data
author
David Ponce
<da_vid@orange.fr>
Fri, 19 Jul 2024 14:10:00 +0000
(16:10 +0200)
committer
Eli Zaretskii
<eliz@gnu.org>
Sun, 4 Aug 2024 07:47:16 +0000
(10:47 +0300)
* lisp/svg.el (svg-print): Remove useless extra space from
the XML representation of child node. (Bug#72198)
lisp/svg.el
patch
|
blob
|
history
diff --git
a/lisp/svg.el
b/lisp/svg.el
index f2eb2ec66ddb62925379dd0e39a9c05ccaa25394..f5c76145136adf56e74c4ad36d682668b90d24d4 100644
(file)
--- a/
lisp/svg.el
+++ b/
lisp/svg.el
@@
-331,7
+331,6
@@
If the SVG is later changed, the image will also be updated."
(insert (format " %s=\"%s\"" (car attr) (cdr attr)))))
(insert ">")
(dolist (elem (nthcdr 2 dom))
- (insert " ")
(svg-print elem))
(insert (format "</%s>" (car dom)))))