Skip to content

Commit ef8d3df

Browse files
committed
Revert "Fix 1 occurrence of error-to-raise-arguments-error"
This reverts commit 7845346.
1 parent f16875e commit ef8d3df

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

default-recommendations/analyzers/private/expanded-id-table.rkt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,7 @@
5555
(expanded-id-table (make-hasheq)))
5656

5757

58-
(define (expanded-id-table-ref table id [failure-result (λ () (raise-arguments-error
59-
'expanded-id-table-ref
60-
"no mapping for"
61-
"id"
62-
id))])
58+
(define (expanded-id-table-ref table id [failure-result (λ () (error 'expanded-id-table-ref "no mapping for ~a" id))])
6359
(define phase (expanded-identifier-phase id))
6460
(define stx (expanded-identifier-syntax id))
6561
(define phase-table (hash-ref (expanded-id-table-table table) phase #false))

0 commit comments

Comments
 (0)