summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-26 14:24:20 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-26 14:24:20 (GMT)
commitc7c23a434e6d12f8fb64b778470ecb18cccf783e (patch)
treef54eafef612b63229c8289576e75af7369095ca3 /generic
parent6ed69603db59ee390437a9eb54685869393a243c (diff)
parent75b009d2316ab41a1ff6bd841da8fd207aba7b9d (diff)
downloadtcl-c7c23a434e6d12f8fb64b778470ecb18cccf783e.zip
tcl-c7c23a434e6d12f8fb64b778470ecb18cccf783e.tar.gz
tcl-c7c23a434e6d12f8fb64b778470ecb18cccf783e.tar.bz2
typos.
On Cygwin, Tcl_SetPanicProc(NULL) should set back the panic proc to its default, which is not NULL.
Diffstat (limited to 'generic')
-rw-r--r--generic/tclConfig.c4
-rw-r--r--generic/tclPanic.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/generic/tclConfig.c b/generic/tclConfig.c
index a4ba71a..1d84cac 100644
--- a/generic/tclConfig.c
+++ b/generic/tclConfig.c
@@ -88,9 +88,9 @@ Tcl_RegisterConfig(
* package meta data. Only if we have an ok encoding.
*
* Phase II: Create a command for querying this database, specific to the
- * package registerting its configuration. This is the approved interface
+ * package registering its configuration. This is the approved interface
* in TIP 59. In the future a more general interface should be done, as
- * followup to TIP 59. Simply because our database is now general across
+ * follow-up to TIP 59. Simply because our database is now general across
* packages, and not a structure tied to one package.
*
* Note, the created command will have a reference through its clientdata.
diff --git a/generic/tclPanic.c b/generic/tclPanic.c
index b87a8df..2a453b9 100644
--- a/generic/tclPanic.c
+++ b/generic/tclPanic.c
@@ -52,6 +52,10 @@ Tcl_SetPanicProc(
#if defined(_WIN32)
/* tclWinDebugPanic only installs if there is no panicProc yet. */
if ((proc != tclWinDebugPanic) || (panicProc == NULL))
+#elif defined(__CYGWIN__)
+ if (proc == NULL)
+ panicProc = tclWinDebugPanic;
+ else
#endif
panicProc = proc;
}