]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid inserting extra space in SVG data
authorDavid Ponce <da_vid@orange.fr>
Fri, 19 Jul 2024 14:10:00 +0000 (16:10 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sun, 11 Aug 2024 07:23:27 +0000 (09:23 +0200)
* lisp/svg.el (svg-print): Remove useless extra space from
the XML representation of child node.  (Bug#72198)

(cherry picked from commit f94d58008eb3d6e9d3ea9e9b967be329a880057b)

lisp/svg.el

index f2eb2ec66ddb62925379dd0e39a9c05ccaa25394..f5c76145136adf56e74c4ad36d682668b90d24d4 100644 (file)
@@ -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)))))