We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7758858 commit c2c77f4Copy full SHA for c2c77f4
ext/ruby_debug/ruby_debug.c
@@ -9,7 +9,7 @@
9
#include <insns_info.inc>
10
#include "ruby_debug.h"
11
12
-#define DEBUG_VERSION "0.11.30.pre8"
+#define DEBUG_VERSION "0.11.30.pre9"
13
14
#define FRAME_N(n) (&debug_context->frames[debug_context->stack_size-(n)-1])
15
#define GET_FRAME (FRAME_N(check_frame_number(debug_context, frame)))
@@ -521,6 +521,10 @@ filename_cmp_impl(VALUE source, char *file);
521
522
int
523
filename_cmp(VALUE source, char *file) {
524
+#ifdef __WIN32__
525
+ return filename_cmp_impl(source, file);
526
+#endif
527
+
528
if (!RTEST(resolve_symlinks)) {
529
return filename_cmp_impl(source, file);
530
}
0 commit comments