summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2003-07-19 01:02:51 (GMT)
committerhobbs <hobbs>2003-07-19 01:02:51 (GMT)
commit865bd50188a32a308282a0078f30c89f2af869f9 (patch)
treed9306410d4b74842d3718e14b3eea05b1b6eda2d
parent8ab0e12e416aca1e75935de7d8391e825273b20e (diff)
downloadtk-865bd50188a32a308282a0078f30c89f2af869f9.zip
tk-865bd50188a32a308282a0078f30c89f2af869f9.tar.gz
tk-865bd50188a32a308282a0078f30c89f2af869f9.tar.bz2
* win/tkWinCursor.c (TkGetCursorByName): Fix bug 420510 to provide
consistency between unix and windows -cursor option. (thoyts)
-rw-r--r--win/tkWinCursor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinCursor.c b/win/tkWinCursor.c
index 23a7618..742bed9 100644
--- a/win/tkWinCursor.c
+++ b/win/tkWinCursor.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkWinCursor.c,v 1.10 2002/08/05 04:30:41 dgp Exp $
+ * RCS: @(#) $Id: tkWinCursor.c,v 1.10.2.1 2003/07/19 01:02:51 hobbs Exp $
*/
#include "tkWinInt.h"
@@ -98,7 +98,7 @@ TkGetCursorByName(interp, tkwin, string)
if (Tcl_SplitList(interp, string, &argc, &argv) != TCL_OK) {
return NULL;
}
- if (argc != 1) {
+ if (argc == 0) {
goto badCursorSpec;
}