]> gitweb.factorcode.org Git - factor.git/commitdiff
Remove debug messages from VM
authorSlava Pestov <slava@factorcode.org>
Tue, 5 May 2009 19:27:22 +0000 (14:27 -0500)
committerSlava Pestov <slava@factorcode.org>
Tue, 5 May 2009 19:27:22 +0000 (14:27 -0500)
vm/code_block.cpp [changed mode: 0644->0755]
vm/os-windows.cpp

old mode 100644 (file)
new mode 100755 (executable)
index d274608..bb34819
@@ -329,7 +329,6 @@ void *get_rel_symbol(array *literals, cell index)
                                return sym;
                        else
                        {
-                               printf("%s\n",name);
                                return (void *)undefined_symbol;
                        }
                }
index bd87c96155cae96e4eadc35464e2285a32025858..7db19ff560c6e6b68c4bebc58de700e110bf8a00 100755 (executable)
@@ -94,7 +94,6 @@ const vm_char *vm_executable_path()
 PRIMITIVE(existsp)
 {
        vm_char *path = untag_check<byte_array>(dpop())->data<vm_char>();
-       wprintf(L"existsp: path is %s\n",path);
        box_boolean(windows_stat(path));
 }