Consolidate quoting style in printed strings.
[pspp] / src / data / file-handle-def.c
index beba83d4fba60602d270a0c91bb7ff3c226acf5c..d025ff6a3a35b4a493b7f6b72f0d3ed61ff461e1 100644 (file)
@@ -233,7 +233,7 @@ fh_create_file (const char *id, const char *file_name,
   char *handle_name;
   struct file_handle *handle;
 
-  handle_name = id != NULL ? xstrdup (id) : xasprintf ("\"%s\"", file_name);
+  handle_name = id != NULL ? xstrdup (id) : xasprintf ("`%s'", file_name);
   handle = create_handle (id, handle_name, FH_REF_FILE);
   handle->file_name = xstrdup (file_name);
   handle->mode = properties->mode;