Mercurial > hg > xemacs-beta
changeset 2725:578c6447aa28
[xemacs-hg @ 2005-04-11 05:11:22 by stephent]
typo in issue_call_trapping_problems_warning
<87mzs552ka.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Mon, 11 Apr 2005 05:11:24 +0000 |
parents | 9e674e9b054e |
children | 4bc213965183 |
files | src/ChangeLog src/eval.c |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sun Apr 10 21:51:33 2005 +0000 +++ b/src/ChangeLog Mon Apr 11 05:11:24 2005 +0000 @@ -1,3 +1,8 @@ +2005-04-10 Stephen J. Turnbull <stephen@xemacs.org> + + * eval.c (issue_call_trapping_problems_warning): Fix argument + count in first call to emacs_sprintf_string_lisp. + 2005-04-10 Marcus Crestani <crestani@xemacs.org> * dumper.c (pdump_get_mc_addr): Use clearer code.
--- a/src/eval.c Sun Apr 10 21:51:33 2005 +0000 +++ b/src/eval.c Mon Apr 11 05:11:24 2005 +0000 @@ -4911,7 +4911,7 @@ emacs_sprintf_string_lisp ("%s: Attempt to throw outside of function:" "To catch `%s' with value `%s'\n\nBacktrace follows:\n\n%s", - Qnil, 3, + Qnil, 4, build_msg_string (warning_string ? warning_string : "error"), p->thrown_tag, p->thrown_value, p->backtrace); warn_when_safe_lispobj (Qerror, current_warning_level (), errstr);