Remove num_to_string() function, because it is not used anywhere.
authorBen Pfaff <blp@gnu.org>
Wed, 1 Nov 2006 03:36:09 +0000 (03:36 +0000)
committerBen Pfaff <blp@gnu.org>
Wed, 1 Nov 2006 03:36:09 +0000 (03:36 +0000)
src/data/ChangeLog
src/data/data-out.c
src/data/format.h

index cc5573549f5a6f314f3371c715cb11864ebd6263..9768a579611f7880bdeefe78aa26483cb620d64f 100644 (file)
@@ -1,3 +1,7 @@
+Tue Oct 31 19:35:36 2006  Ben Pfaff  <blp@gnu.org>
+
+       * data-out.c: (num_to_string) Removed, because it was dead code.
+
 Tue Oct 31 18:09:24 2006  Ben Pfaff  <blp@gnu.org>
 
        * data-in.c (parse_trailer): Fix error message.
index 6106fc3011f420f7080252db49c2c14f4c03ad0f..49a1dbd619187e87b4cd96f901378452e1c48e89 100644 (file)
@@ -187,15 +187,6 @@ data_out (char *s, const struct fmt_spec *fp, const union value *v)
   
   return ok;
 }
-
-/* Converts V into S in F format with width W and D decimal places,
-   then deletes trailing zeros.  S is not null-terminated. */
-void
-num_to_string (double v, char *s, int w, int d)
-{
-  struct fmt_spec f = make_output_format (FMT_F, w, d);
-  convert_F (s, &f, v);
-}
 \f
 /* Main conversion functions. */
 
index b720055575ebd47299c3f164bb06cd1dc79a9e53..2c7074d24adb8be393aeb566f44e7662d2dfd4fa 100644 (file)
@@ -121,7 +121,6 @@ int translate_fmt (int spss);
 bool data_out (char *s, const struct fmt_spec *fp, const union value *v);
 bool fmt_type_from_string (const char *name, int *type);
 char *fmt_to_string (const struct fmt_spec *);
-void num_to_string (double v, char *s, int w, int d);
 struct fmt_spec make_input_format (int type, int w, int d);
 struct fmt_spec make_output_format (int type, int w, int d);
 bool fmt_is_binary (int type);