summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ethier <justin.ethier@gmail.com>2015-01-29 22:08:25 -0500
committerJustin Ethier <justin.ethier@gmail.com>2015-01-29 22:08:25 -0500
commit3317e66bc5877016041a0a910de24f9c262fd2df (patch)
tree4051d008b7ef8810193c06b549a820dc060ac6db
parent03de1b2c94c8b6b45439df7140572be1f5943acb (diff)
Updated output to match new call history formatcall-stack-dev
-rw-r--r--ChangeLog.markdown5
1 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog.markdown b/ChangeLog.markdown
index f92f04ab..b8934e74 100644
--- a/ChangeLog.markdown
+++ b/ChangeLog.markdown
@@ -7,9 +7,10 @@ New Features:
huski> ((lambda () (vector-length "v")))
Invalid type: expected vector, found "v"
+
Call History:
- (vector-length "v")
- ((lambda () (vector-length "v")))
+ #0: (vector-length "v")
+ #1: ((lambda () (vector-length "v")))
Sorry this took so long, as it should be a tremendous help for debugging!
- Print the number of received arguments when displaying an "incorrect number of arguments" error message. Also unbox any objects before displaying the error message.