summaryrefslogtreecommitdiff
path: root/lib/rexml/doctype.rb
diff options
context:
space:
mode:
authorser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-16 21:42:10 +0000
committerser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-16 21:42:10 +0000
commitb84ebdcb0597511207c4768e97ce313e0b9d4dbf (patch)
treec532c699d3fdda1760d3a84ef14ab26ae95fa443 /lib/rexml/doctype.rb
parent7430c46af697b32cd20d902b4613cea206f47d04 (diff)
Fixed Issue7: DocType with external IDs was not being quoted.
SHIFT_JIS now merely includes Shift-JIS git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/doctype.rb')
-rw-r--r--lib/rexml/doctype.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rexml/doctype.rb b/lib/rexml/doctype.rb
index 506952312a..d69de214b1 100644
--- a/lib/rexml/doctype.rb
+++ b/lib/rexml/doctype.rb
@@ -189,7 +189,7 @@ module REXML
end
def to_s
- "<!NOTATION #@name #@middle #@rest>"
+ "<!NOTATION #@name '#@middle #@rest'>"
end
def write( output, indent=-1 )