diff options
author | Puneeth Chaganti <punchagan@muse-amuse.in> | 2016-05-21 10:02:46 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2016-05-21 10:02:46 +0300 |
commit | edb4af7a1d1e8e0ab67b2dedad0ca0380e6866d4 (patch) | |
tree | 478ffb386c2e2821b3d2c54a3ef3a9455e30b69f /lisp | |
parent | 44d743c20fa84fe041581dd3e0e2c5b9d86189e7 (diff) | |
download | emacs-edb4af7a1d1e8e0ab67b2dedad0ca0380e6866d4.tar.gz |
* lisp/svg.el (svg-create): Fix a typo: xmlsn -> xmlns. (Bug#23589)
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/svg.el | 2 |
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." `((width . ,width) (height . ,height) (version . "1.1") - (xmlsn . "http://www.w3.org/2000/svg") + (xmlns . "http://www.w3.org/2000/svg") ,@(svg--arguments nil args)))) (defun svg-gradient (svg id type stops) |