changed linreg_cache.coeff to **
[pspp-builds.git] / src / output / postscript.c
index 7fea637426da3388ff679f7d2f6c74a8c0edca4a..3b655e29bddb45bd919de5498d0ea8cb1f214086 100644 (file)
@@ -424,7 +424,7 @@ handle_option (struct outp_driver *this, const char *key,
 }
 
 /* Looks for a PostScript font file or config file in all the
-   appropriate places.  Returns the filename on success, NULL on
+   appropriate places.  Returns the file name on success, NULL on
    failure. */
 static char *
 find_ps_file (const char *name)
@@ -433,7 +433,7 @@ find_ps_file (const char *name)
     return xstrdup (name);
   else
     {
-      char *base_name = xasprintf ("psfonts%c%s", DIR_SEPARATOR, name);
+      char *base_name = xasprintf ("psfonts/%s", name);
       char *file_name = fn_search_path (base_name, config_path, NULL);
       free (base_name);
       return file_name;