aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPuneeth Chaganti2016-05-21 10:02:46 +0300
committerEli Zaretskii2016-05-21 10:02:46 +0300
commitedb4af7a1d1e8e0ab67b2dedad0ca0380e6866d4 (patch)
tree478ffb386c2e2821b3d2c54a3ef3a9455e30b69f
parent44d743c20fa84fe041581dd3e0e2c5b9d86189e7 (diff)
downloademacs-edb4af7a1d1e8e0ab67b2dedad0ca0380e6866d4.tar.gz
emacs-edb4af7a1d1e8e0ab67b2dedad0ca0380e6866d4.zip
* lisp/svg.el (svg-create): Fix a typo: xmlsn -> xmlns. (Bug#23589)
-rw-r--r--lisp/svg.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/svg.el b/lisp/svg.el
index 0b45c5cc0e9..c4f3270ea8a 100644
--- a/lisp/svg.el
+++ b/lisp/svg.el
@@ -36,7 +36,7 @@ any further elements added."
36 `((width . ,width) 36 `((width . ,width)
37 (height . ,height) 37 (height . ,height)
38 (version . "1.1") 38 (version . "1.1")
39 (xmlsn . "http://www.w3.org/2000/svg") 39 (xmlns . "http://www.w3.org/2000/svg")
40 ,@(svg--arguments nil args)))) 40 ,@(svg--arguments nil args))))
41 41
42(defun svg-gradient (svg id type stops) 42(defun svg-gradient (svg id type stops)