diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/svg.el | 3 |
1 files changed, 2 insertions, 1 deletions
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." | |||
| 70 | (height . ,height) | 70 | (height . ,height) |
| 71 | (version . "1.1") | 71 | (version . "1.1") |
| 72 | (xmlns . "http://www.w3.org/2000/svg") | 72 | (xmlns . "http://www.w3.org/2000/svg") |
| 73 | (xmlns:xlink . "http://www.w3.org/1999/xlink") | 73 | ,@(unless (plist-get args :xmlns:xlink) |
| 74 | '((xmlns:xlink . "http://www.w3.org/1999/xlink"))) | ||
| 74 | ,@(svg--arguments nil args)))) | 75 | ,@(svg--arguments nil args)))) |
| 75 | 76 | ||
| 76 | (defun svg-gradient (svg id type stops) | 77 | (defun svg-gradient (svg id type stops) |