Slight bug fix for path display

svn: r9162
This commit is contained in:
Kathy Gray 2008-04-04 12:10:33 +00:00
parent e26136ad6e
commit 4047d38184

View File

@ -369,7 +369,7 @@
(string-append
(cond
[(symbol? (src-file src)) (string-append " At ")]
((path? (src-file src)) (string-append " In " (src-file src) " at "))
((path? (src-file src)) (string-append " In " (path->string (src-file src)) " at "))
((is-a? (src-file src) editor<%>) " At "))
"line " (number->string (src-line src))
" column " (number->string (src-col src)))))