summaryrefslogtreecommitdiff
path: root/src/helper
diff options
context:
space:
mode:
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>2010-06-18 00:48:47 +0200
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-06-18 07:57:15 +0200
commit127f9da4fe0a3e2eaa86c5cd32bb45b6a7083171 (patch)
tree4fa1ffd6ddc87cbbabd81bc9ee7f5003e19eb073 /src/helper
parentc3ee63be77476af770134b39d31758eb6a0ef69f (diff)
downloadopenocd+libswd-127f9da4fe0a3e2eaa86c5cd32bb45b6a7083171.tar.gz
openocd+libswd-127f9da4fe0a3e2eaa86c5cd32bb45b6a7083171.tar.bz2
openocd+libswd-127f9da4fe0a3e2eaa86c5cd32bb45b6a7083171.tar.xz
openocd+libswd-127f9da4fe0a3e2eaa86c5cd32bb45b6a7083171.zip
don't add confusing source info to Jim
When an interactive command fails, the Jim stack trace prints references to the line in "command.c" where the interpreter was invoked. Since that location has no relation to the actual command that failed, the information serves only to add confusion. By not adding the useless source info to Jim the noise can be reduced, while still printing a useful trace for nested commands. Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/helper')
-rw-r--r--src/helper/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/command.c b/src/helper/command.c
index be262f2e..ea768b2d 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -362,7 +362,7 @@ static int register_command_handler(struct command_context *cmd_ctx,
if (NULL == override_name)
return JIM_ERR;
- retval = Jim_Eval_Named(interp, override_name, __THIS__FILE__ , __LINE__);
+ retval = Jim_Eval_Named(interp, override_name, 0, 0);
free((void *)override_name);
return retval;
@@ -651,7 +651,7 @@ int command_run_line(struct command_context *context, char *line)
retcode = Jim_SetAssocData(interp, "retval", NULL, &retval);
if (retcode == JIM_OK)
{
- retcode = Jim_Eval_Named(interp, line, __THIS__FILE__, __LINE__);
+ retcode = Jim_Eval_Named(interp, line, 0, 0);
Jim_DeleteAssocData(interp, "retval");
}