summaryrefslogtreecommitdiffstats
path: root/win/tclWinLoad.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-07-03 14:52:55 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-07-03 14:52:55 (GMT)
commit08bec1c1e8e4aae5cb45d4c68a2ab5d9bd73470e (patch)
tree84118ecaa9257d1f2e99228c0ae52bc98d574b97 /win/tclWinLoad.c
parenta70bdc9ec1f2e2009feff998bb7ceb63dd28cb90 (diff)
downloadtcl-08bec1c1e8e4aae5cb45d4c68a2ab5d9bd73470e.zip
tcl-08bec1c1e8e4aae5cb45d4c68a2ab5d9bd73470e.tar.gz
tcl-08bec1c1e8e4aae5cb45d4c68a2ab5d9bd73470e.tar.bz2
Factor out a number of common patterns of use of Tcl_DStringAppend.
Diffstat (limited to 'win/tclWinLoad.c')
-rw-r--r--win/tclWinLoad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinLoad.c b/win/tclWinLoad.c
index e5b927d..b59ccba 100644
--- a/win/tclWinLoad.c
+++ b/win/tclWinLoad.c
@@ -184,7 +184,7 @@ FindSymbol(
const char *sym2;
Tcl_DStringInit(&ds);
- Tcl_DStringAppend(&ds, "_", 1);
+ TclDStringAppendLiteral(&ds, "_");
sym2 = Tcl_DStringAppend(&ds, symbol, -1);
proc = (Tcl_PackageInitProc *) GetProcAddress(hInstance, sym2);
Tcl_DStringFree(&ds);