Reworked very long string support for better encapsulation.
[pspp-builds.git] / src / data / data-out.c
index b7ee5314d93c095993429de721d187b72d4f439e..53d9850db88a0da0ffb9ac3c1a76ada0d097955b 100644 (file)
@@ -395,7 +395,7 @@ convert_Z (char *dst, const struct fmt_spec *fp, double number)
 static int
 convert_A (char *dst, const struct fmt_spec *fp, const char *string)
 {
-  copy_demangle(dst, fp->w, string, fp->w);
+  memcpy(dst, string, fp->w);
   return 1;
 }