summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-03-22 10:04:12 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-03-22 10:04:12 (GMT)
commitd63f456a83dd1cbb7dedd7fd1148a89f0905bcd0 (patch)
tree2d4f5e319180b00084bfb1e3f9de6fb08c85b910
parentb0e0d4b618d58c962735cb62982229a8f67fb632 (diff)
downloadtcl-d63f456a83dd1cbb7dedd7fd1148a89f0905bcd0.zip
tcl-d63f456a83dd1cbb7dedd7fd1148a89f0905bcd0.tar.gz
tcl-d63f456a83dd1cbb7dedd7fd1148a89f0905bcd0.tar.bz2
Fix incorrect comment: underscore ('_') is allowed in a packageName
-rw-r--r--generic/tclLoad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclLoad.c b/generic/tclLoad.c
index 2891884..e1c21b0 100644
--- a/generic/tclLoad.c
+++ b/generic/tclLoad.c
@@ -27,7 +27,7 @@ typedef struct LoadedPackage {
* is loaded statically. Malloc-ed. */
char *packageName; /* Name of package prefix for the package,
* properly capitalized (first letter UC,
- * others LC), no "_", as in "Net".
+ * others LC), as in "Net".
* Malloc-ed. */
Tcl_LoadHandle loadHandle; /* Token for the loaded file which should be
* passed to (*unLoadProcPtr)() when the file