fix runtime error (Ruby 1.8.1 doesn't seem to parse this special character)

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7632 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2005-10-09 07:58:43 +00:00
commit c58bc59e5f

View file

@ -17,7 +17,7 @@ if Char_constant::NULL_CONST != "\000"
raise RuntimeError, "Invalid value for NULL_CONST."
end
if Char_constant::SPECIALCHAR != 'á'
if Char_constant::SPECIALCHAR != "\341" #'á'
raise RuntimeError, "Invalid value for SPECIALCHAR."
end