diff options
author | mdejong <mdejong> | 2002-04-10 19:39:01 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2002-04-10 19:39:01 (GMT) |
commit | 67f8c0c0edc3c920abc43ff2aa7e8b38b28e99db (patch) | |
tree | f6f4f961e121bf575ab64acfb2331a86adb25f2e /unix/tkUnixWm.c | |
parent | 6bd371547ba7d755135efbaefba209f9e426ea7d (diff) | |
download | tk-67f8c0c0edc3c920abc43ff2aa7e8b38b28e99db.zip tk-67f8c0c0edc3c920abc43ff2aa7e8b38b28e99db.tar.gz tk-67f8c0c0edc3c920abc43ff2aa7e8b38b28e99db.tar.bz2 |
* doc/wm.n:
* mac/tkMacWm.c:
* tests/wm.test:
* unix/tkUnixWm.c:
* win/tkWinWm.c: Update wm stackorder usage message
to make it clear that either 1 or 3 arguments are
required. [Bug 540013]
Diffstat (limited to 'unix/tkUnixWm.c')
-rw-r--r-- | unix/tkUnixWm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkUnixWm.c b/unix/tkUnixWm.c index 940cf61..b268bee 100644 --- a/unix/tkUnixWm.c +++ b/unix/tkUnixWm.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixWm.c,v 1.13 2002/04/05 08:41:44 hobbs Exp $ + * RCS: @(#) $Id: tkUnixWm.c,v 1.14 2002/04/10 19:39:01 mdejong Exp $ */ #include "tkPort.h" @@ -1759,7 +1759,7 @@ Tk_WmCmd(clientData, interp, argc, argv) if ((argc != 3) && (argc != 5)) { Tcl_AppendResult(interp, "wrong # arguments: must be \"", argv[0], - " stackorder window ?isabove|isbelow? ?window?\"", + " stackorder window ?isabove|isbelow window?\"", (char *) NULL); return TCL_ERROR; } |