s/rs/syntax
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Task / Retrieve.pm
index 1022235..4d7a8c5 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Retrieve.pm,v 1.4 2007-03-07 18:00:15 mike Exp $
+# $Id: Retrieve.pm,v 1.6 2007-05-09 11:05:30 mike Exp $
 
 package ZOOM::IRSpy::Task::Retrieve;
 
@@ -31,6 +31,9 @@ sub new {
     my $this = $class->SUPER::new(@_);
     $this->{rs} = $rs;
     $this->{index0} = $index0;
+    # Save initial record-syntax for render()'s benefit
+    $this->{syntax} = $this->{options}->{preferredRecordSyntax};
+
     return $this;
 }
 
@@ -55,7 +58,7 @@ sub run {
 
 sub render {
     my $this = shift();
-    my $syntax = $this->{options}->{preferredRecordSyntax};
+    my $syntax = $this->{syntax};
     $syntax = defined $syntax ? "'$syntax'" : "undef";
     return ref($this) . "(" . $this->{index0} . ", $syntax)";
 }