diff options
author | dgp <dgp@users.sourceforge.net> | 2015-06-03 17:40:10 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2015-06-03 17:40:10 (GMT) |
commit | 40e080788cc6a4045283e0cc0d4cd3317bfadac3 (patch) | |
tree | d329373ca18628dcc2e19fc2fe004ca314188554 | |
parent | 0c2604871db8e162533e9729c9e5201334510785 (diff) | |
download | tcl-40e080788cc6a4045283e0cc0d4cd3317bfadac3.zip tcl-40e080788cc6a4045283e0cc0d4cd3317bfadac3.tar.gz tcl-40e080788cc6a4045283e0cc0d4cd3317bfadac3.tar.bz2 |
Put the ellipsis inside, not outside, the close quote.
-rw-r--r-- | generic/tclDisassemble.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclDisassemble.c b/generic/tclDisassemble.c index b3753c31..0a325b3 100644 --- a/generic/tclDisassemble.c +++ b/generic/tclDisassemble.c @@ -842,10 +842,10 @@ PrintSourceToObj( continue; } } - Tcl_AppendToObj(appendObj, "\"", -1); if (*p != '\0') { Tcl_AppendToObj(appendObj, "...", -1); } + Tcl_AppendToObj(appendObj, "\"", -1); } /* |