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 b5cbbf4 commit ad1b8ebCopy full SHA for ad1b8eb
scheme-libs/racket/unison/primops.ss
@@ -902,11 +902,13 @@
902
(define (unison-POp-LEQT s t) (bool (chunked-string<? s t)))
903
(define (unison-POp-EQLU x y) (bool (universal=? x y)))
904
(define (unison-POp-EROR fnm x)
905
- (let-values ([(p g) (open-string-output-port)])
906
- (put-string p (chunked-string->string fnm))
+ (let-values
+ ([(p g) (open-string-output-port)]
907
+ [(snm) (chunked-string->string fnm)])
908
+ (put-string p snm)
909
(put-string p ": ")
910
(display (describe-value x) p)
- (raise (make-exn:bug fnm x))))
911
+ (raise (make-exn:bug snm x))))
912
(define (unison-POp-FTOT f)
913
(define base (number->string f))
914
(define dotted
0 commit comments