Reworked very long string support for better encapsulation.
[pspp-builds.git] / src / data / data-in.c
index 1e8fe67983350fefb5ae4ce117b312bbb0711f9f..b4658582f4192ba69923967d4802cf46ade26dc1 100644 (file)
@@ -572,9 +572,7 @@ parse_RB (struct data_in *i)
 static inline bool
 parse_A (struct data_in *i)
 {
-  const int bytes = width_to_bytes(i->format.w);
-
-  copy_mangle (i->v->s, bytes, i->s, i->e - i->s);
+  buf_copy_rpad (i->v->s, i->format.w, i->s, i->e - i->s);
   
   return true;
 }