bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#23588: 25.1.50; Fix typo in svg namespace


From: Puneeth Chaganti
Subject: bug#23588: 25.1.50; Fix typo in svg namespace
Date: Sat, 21 May 2016 02:51:21 +0530

This patch fixes a typo in the namespace when creating an svg.

- Puneeth

---
>From b092211c2fcc834e5db1043c71aba60390b0f74b Mon Sep 17 00:00:00 2001
From: Puneeth Chaganti <punchagan@muse-amuse.in>
Date: Fri, 20 May 2016 14:10:30 +0530
Subject: [PATCH] Fix typo in svg namespace name

* lisp/svg.el (svg-create): s/xmlsn/xmlns.
---
 lisp/svg.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/svg.el b/lisp/svg.el
index 0b45c5c..c4f3270 100644
--- a/lisp/svg.el
+++ b/lisp/svg.el
@@ -36,7 +36,7 @@ svg-create
            `((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)
--
2.7.4





reply via email to

[Prev in Thread] Current Thread [Next in Thread]