slightly better duplicate-key error reporting from Scribble

svn: r12478

original commit: 2cea4696f5c485e430bab544986be1a3fcfa38d0
This commit is contained in:
Matthew Flatt 2008-11-17 17:36:35 +00:00
parent d975dc7f2d
commit 10af6b4da4
2 changed files with 7 additions and 5 deletions

View File

@ -374,6 +374,7 @@
(if (rendering-tt) (format "{\\hbox{\\texttt{~a}}}" c) c)]
[(#\~) "$\\sim$"]
[(#\{ #\} #\# #\% #\& #\$) (format "\\~a" c)]
[(#\uA0) "~"]
[(#\uDF) "{\\ss}"]
[(#\u039A) "K"] ; kappa
[(#\u0391) "A"] ; alpha

View File

@ -14,11 +14,12 @@
(define (collect-put! ci key val)
(let ([ht (collect-info-ht ci)])
(when (hash-ref ht key #f)
(fprintf (current-error-port)
"WARNING: collected information for key multiple times: ~e\n"
key))
(hash-set! ht key val)))
(let ([old-val (hash-ref ht key #f)])
(when old-val
(fprintf (current-error-port)
"WARNING: collected information for key multiple times: ~e; values: ~e ~e\n"
key old-val val))
(hash-set! ht key val))))
(define (resolve-get/where part ri key)
(let ([key (tag-key key ri)])