Alvatar
Alvatar
If a cond-expand clause has only a form of the kind (import ...) it fails to execute with: -- Ill-formed special form: begin Seems to happen only with (import ...)...
If you load a module from a package "(import (ffi-cairo))", and compilation is forced, you get an error of this kind: **\* ERROR IN bh#module-compile-bunch -- Invalid argument to module-compile-bunch...
c-define doesn't expand its code properly: functions called withing this form don't get their names processed in order to be the same as the function called. ``` (define (setup-hook) 0)...
cond-expand doesn't allow definition of new features: (define-cond-expand-feature custom) (cond-expand (custom (pp 'asdf)) (else)) Doesn't print 'asdf as it should. This code works in gambit without blackhole.
This macro (taken from srfi-67) isn't expanding properly: ``` (define-syntax if3 (syntax-rules () ((if3 c less equal greater) (case c ((-1) less) (( 0) equal) (( 1) greater) (else (error...
This test is quite useful to see the robustness of a syntax-rule implementation: http://okmij.org/ftp/Scheme/syntax-rule-stress-test.scm Gambit's default implementation passes it, but Blackhole currently doesn't.
When generating a define with a macro, such as this: ``` (define-syntax test (syntax-rules () ((_ a) (define asdf (lambda () 'aaa))))) (test 2) (asdf) ``` You get this error:...
Hi, Lately, this message happens with basically every component I create. Is it expected? ``` material-ui.inc.js:925 Warning: my-comp: isMounted is deprecated. Instead, make sure to clean up subscriptions and pending...
``` (load (spheres/string regexp)) > (regexp-extract '(+ numeric) "192.168.0.1") *** ERROR IN spheres/structure#hash-table#hash-table-mutable? -- (Argument 1) Instance of # expected (##direct-structure-ref '# 1 '# #f) ```
A command to rename all files with a base path into the new base path. For example: /mnt/usb/music/my-album /mnt/usb/music/my-album2 /mnt/usb/the-music/my-album /mnt/usb/the-music/my-album2