From 82f8bee734b47e639a931048f9a6ccbfc85a8bb0 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Tue, 24 Mar 2020 05:30:49 +0100 Subject: [PATCH] Don't add repeated xlmns:xlink declarations in svg-create * lisp/svg.el (svg-create): Fix previous unconditional addition of the xmlns:xlink declaration -- callers may already add one, and having it twice is something most svg libraries doesn't like. --- lisp/svg.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/svg.el b/lisp/svg.el index 370c9c04e76..7aadbc23593 100644 --- a/lisp/svg.el +++ b/lisp/svg.el @@ -70,7 +70,8 @@ any further elements added." (height . ,height) (version . "1.1") (xmlns . "http://www.w3.org/2000/svg") - (xmlns:xlink . "http://www.w3.org/1999/xlink") + ,@(unless (plist-get args :xmlns:xlink) + '((xmlns:xlink . "http://www.w3.org/1999/xlink"))) ,@(svg--arguments nil args)))) (defun svg-gradient (svg id type stops) -- 2.39.5