aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-10-04 16:53:14 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-10-04 16:53:14 +0000
commit77e58a3398cde8a0e9b0cb07ffe20e6137efe41c (patch)
tree1c1bc777806358ae3277e67b173bd96242f6d459
parentfccfc4f7de195db7b690cb17673c8942a8175fce (diff)
downloadruby-77e58a3398cde8a0e9b0cb07ffe20e6137efe41c.tar.gz
* ext/psych/parser.c (parse): Use context_mark for indicating error
line and column. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33403 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/psych/parser.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0e1de32cb9..e52628adce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Oct 5 01:52:16 2011 Aaron Patterson <aaron@tenderlovemaking.com>
+
+ * ext/psych/parser.c (parse): Use context_mark for indicating error
+ line and column.
+
Wed Oct 5 01:22:08 2011 Aaron Patterson <aaron@tenderlovemaking.com>
* ext/psych/lib/psych/scalar_scanner.rb: use normal begin / rescue
diff --git a/ext/psych/parser.c b/ext/psych/parser.c
index e68768f562..f3928a9510 100644
--- a/ext/psych/parser.c
+++ b/ext/psych/parser.c
@@ -99,8 +99,8 @@ static VALUE parse(VALUE self, VALUE yaml)
while(!done) {
if(!yaml_parser_parse(parser, &event)) {
VALUE path;
- size_t line = parser->mark.line;
- size_t column = parser->mark.column;
+ size_t line = parser->context_mark.line + 1;
+ size_t column = parser->context_mark.column + 1;
if(rb_respond_to(yaml, id_path))
path = rb_funcall(yaml, id_path, 0);