From 069dfb5c06b2fdc6b556f86047ad6070122f1178 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Sun, 3 Apr 2016 22:37:49 -0400
Subject: [PATCH] normalize slashes for windows gui_dir, and clarify a comment

---
 pd/nw/pdgui.js | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js
index 76bd68909..ab6de6cfb 100644
--- a/pd/nw/pdgui.js
+++ b/pd/nw/pdgui.js
@@ -13,8 +13,13 @@ exports.get_pwd = function() {
     return pwd;
 }
 
+function defunkify_windows_path(s) {
+    return s.replace(/\\/g, "/");
+}
+
 exports.set_gui_dir = function(dir_string) {
     gui_dir = path.normalize(path.join(dir_string, ".."));
+    gui_dir = defunkify_windows_path(gui_dir);
 }
 
 exports.get_gui_dir = function() {
@@ -429,7 +434,7 @@ post("hey, the initdir is " + initdir + " and initfile is " + initfile);
     if (initfile.slice(-3) !== ".pd") {
         initfile += ".pd";
     }
-    // This is complicated because of a bug... see above
+    // This is complicated because of a bug... see build_file_dialog_string
     input = build_file_dialog_string({
         style: "display: none;",
         type: "file",
-- 
GitLab