Bugs item #1447041, was opened at 2006-03-10 08:09
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=379534&aid=1447041&group_id=23735
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: Matthias Radestock (mradestock)
Assigned to: Nobody/Anonymous (nobody)
Summary: missing procedure names in error messages
Initial Comment:
The following are examples where I was expecting error
messages to contain a procedure name, but
"indeterminate call" or "from call to/argument of" gets
reported instead:
SISC (1.13.0-alpha)
#;> (define (bar) (/ 1 0))
#;> (+ (bar) 1 2)
Error in /: division by zero.
console:1:15: <from call to />
console:2:4: <from call to bar>
#;> (if (bar) 1 2)
Error in /: division by zero.
console:1:15: <from call to />
console:3:5: <indeterminate call>
#;> (let ([foo (lambda () (/ 1 0))])
(+ (foo) 1 2))
Error in /: division by zero.
console:4:23: <from call to />
console:5:6: <from call to/argument of +>
#;> (let ()
(define (foo) (/ 1 0))
(+ (foo) 1 2))
Error in /: division by zero.
console:7:17: <from call to />
console:8:6: <from call to/argument of +>
#;>
Of the above, only the first example - (+ (bar) 1 2) -
produced the error message I expected.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=379534&aid=1447041&group_id=23735
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
|