helper: Move escape_underscores() here.
authorBen Pfaff <blp@cs.stanford.edu>
Fri, 13 Apr 2012 05:33:07 +0000 (22:33 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Sat, 21 Apr 2012 05:08:55 +0000 (22:08 -0700)
An upcoming commit will introduce a new user in a different file.

src/ui/gui/helper.c
src/ui/gui/helper.h
src/ui/gui/text-data-import-dialog.c

index 04c9bfe92039b0fd8dacf7653d39a26495494855..c5f7883913e2c606f33e33f1151c5970b3d412c1 100644 (file)
 
 #include <gettext.h>
 
+/* Returns a copy of IN with each underscore doubled.  The caller should free
+   the returned string (with free()) when it is no longer needed. */
+char *
+escape_underscores (const char *in)
+{
+  char *out = xmalloc (2 * strlen (in) + 1);
+  char *p;
+
+  p = out;
+  for (; *in != '\0'; in++)
+    {
+      if (*in == '_')
+        *p++ = '_';
+      *p++ = *in;
+    }
+  *p = '\0';
+
+  return out;
+}
+
 /* Formats a value according to VAR's print format and strips white space
    appropriately for VAR's type.  That is, if VAR is numeric, strips leading
    white space (because numbers are right-justified within their fields), and
index d9fb3d64dde3752cc6e21756f3db1ac64b95cb90..be0b1ad480b3251210dfabb53afee4034c0d9ba6 100644 (file)
@@ -44,6 +44,7 @@ null_if_empty_param (const gchar *name, const gchar *nick,
   return param;
 }
 
+char *escape_underscores (const char *);
 
 gchar * value_to_text (union value v, const struct variable *);
 gchar * value_to_text__ (union value v, const struct fmt_spec *,
index 10dc626609a467f961e04f14a552f871ccea1549..c4abeaa48b2e8f5b9969972ef5bd9ea7a7201933 100644 (file)
@@ -213,7 +213,6 @@ static GtkTreeViewColumn *make_data_column (struct import_assistant *,
                                             gint column_idx);
 static GtkTreeView *create_data_tree_view (bool input, GtkContainer *parent,
                                            struct import_assistant *);
-static char *escape_underscores (const char *in);
 static void push_watch_cursor (struct import_assistant *);
 static void pop_watch_cursor (struct import_assistant *);
 
@@ -2088,24 +2087,6 @@ create_data_tree_view (bool input, GtkContainer *parent,
   return tree_view;
 }
 
-static char *
-escape_underscores (const char *in)
-{
-  char *out = xmalloc (2 * strlen (in) + 1);
-  char *p;
-
-  p = out;
-  for (; *in != '\0'; in++)
-    {
-      if (*in == '_')
-        *p++ = '_';
-      *p++ = *in;
-    }
-  *p = '\0';
-
-  return out;
-}
-
 /* Increments the "watch cursor" level, setting the cursor for
    the assistant window to a watch face to indicate to the user
    that the ongoing operation may take some time. */