diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | debug.h | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2014-01-13 Kaz Kylheku <kaz@kylheku.com> + + * debug.h (debug_check): Fix broken build when debugger is disabled: + the debug-disabled stub function needs six arguments. + 2014-01-12 Kaz Kylheku <kaz@kylheku.com> Some bignum-related optimizations @@ -85,7 +85,8 @@ void debug_init(void); #define debug_return(VAL) return VAL -INLINE val debug_check(val form, val bindings, val data, val line, val chr) +INLINE val debug_check(val form, val bindings, val data, val line, + val pos, val base) { return nil; } |