diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2011-04-03 06:05:13 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2011-04-03 06:05:13 (GMT) |
commit | 2205a28b9e00ec29977d2b21e2f2bda3b77aaaf4 (patch) | |
tree | 261625244d376d9a2c2415ce97c8a93bdc2304f6 /generic/tclNamesp.c | |
parent | fcf7bbf6ec9bc4d484960cf51acdab44bca2683a (diff) | |
download | tcl-2205a28b9e00ec29977d2b21e2f2bda3b77aaaf4.zip tcl-2205a28b9e00ec29977d2b21e2f2bda3b77aaaf4.tar.gz tcl-2205a28b9e00ec29977d2b21e2f2bda3b77aaaf4.tar.bz2 |
More generation of error codes (namespace creation, path normalization,
pipeline creation, package handling, procedures, [scan] formats)
Diffstat (limited to 'generic/tclNamesp.c')
-rw-r--r-- | generic/tclNamesp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index 3a08221..45b9f6d 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -690,6 +690,8 @@ Tcl_CreateNamespace( Tcl_ResetResult(interp); Tcl_AppendResult(interp, "can't create namespace \"\": " "only global namespace can have empty name", NULL); + Tcl_SetErrorCode(interp, "TCL", "OPERATION", "NAMESPACE", + "CREATEGLOBAL", NULL); return NULL; } else { /* @@ -725,6 +727,8 @@ Tcl_CreateNamespace( ) { Tcl_AppendResult(interp, "can't create namespace \"", name, "\": already exists", NULL); + Tcl_SetErrorCode(interp, "TCL", "OPERATION", "NAMESPACE", + "CREATEEXISTING", NULL); return NULL; } } |