1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Distinfo rerolled; verified there are no functional changes

PR:		ports/91726
Reported by:	Robert Gogolok <gogo@cs.uni-sb.de>
This commit is contained in:
Pav Lucistnik 2006-01-13 23:13:55 +00:00
parent 3ee0ab7704
commit acae558d44
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=153410
2 changed files with 3 additions and 27 deletions

View File

@ -1,3 +1,3 @@
MD5 (ruby/xmlparser-0.6.8.tar.gz) = 8f0d200b6e7ed2ec972cbbb033a4c857
SHA256 (ruby/xmlparser-0.6.8.tar.gz) = af5d76535a16d60d8825446c88248260775d1e845fee08ff3111c8de796bd2aa
SIZE (ruby/xmlparser-0.6.8.tar.gz) = 140589
MD5 (ruby/xmlparser-0.6.8.tar.gz) = 6f056117683cea19244ff1c1c0fc5c65
SHA256 (ruby/xmlparser-0.6.8.tar.gz) = ce3ac2af52b181b6639f6f6c55c4bb5641562113a710c2e17e3590301f885280
SIZE (ruby/xmlparser-0.6.8.tar.gz) = 140667

View File

@ -1,24 +0,0 @@
--- xmlparser.c.orig Tue Apr 6 14:16:09 2004
+++ xmlparser.c Wed Apr 21 12:38:50 2004
@@ -526,8 +526,9 @@
XML_Content *model)
{
XMLParser* parser;
+ VALUE content;
GET_PARSER(recv, parser);
- VALUE content = makeContentArray(parser, model);
+ content = makeContentArray(parser, model);
rb_yield(rb_ary_new3(4, symELEMENT_DECL,
TO_(rb_str_new2(name)),
content, recv));
@@ -929,8 +930,9 @@
XML_Content *model)
{
XMLParser* parser;
+ VALUE content;
GET_PARSER(recv, parser);
- VALUE content = makeContentArray(parser, model);
+ content = makeContentArray(parser, model);
rb_funcall((VALUE)recv, id_elementDeclHandler, 2,
TO_(rb_str_new2(name)), content);
}