summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-05-16 18:31:16 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-05-16 18:31:16 (GMT)
commit0cdf77b86f8614417248e73667c71059a8210147 (patch)
tree3cde776be5b44a9b7022f5673e664d9f1750557d /unix
parente01db2e89f1006c18e17ba8abdd6b0aa6bc22ac2 (diff)
parent4e04d8c4e5426b6166e7100e72ab3e01b5e71af1 (diff)
downloadtk-0cdf77b86f8614417248e73667c71059a8210147.zip
tk-0cdf77b86f8614417248e73667c71059a8210147.tar.gz
tk-0cdf77b86f8614417248e73667c71059a8210147.tar.bz2
Merge 8.7
Diffstat (limited to 'unix')
-rw-r--r--unix/tkUnixWm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkUnixWm.c b/unix/tkUnixWm.c
index 3f69f8a..a49fdc3 100644
--- a/unix/tkUnixWm.c
+++ b/unix/tkUnixWm.c
@@ -3415,9 +3415,9 @@ WmStateCmd(
{
WmInfo *wmPtr = winPtr->wmInfoPtr;
static const char *const optionStrings[] = {
- "normal", "iconic", "withdrawn", NULL };
+ "iconic", "normal", "withdrawn", NULL };
enum options {
- OPT_NORMAL, OPT_ICONIC, OPT_WITHDRAWN };
+ OPT_ICONIC, OPT_NORMAL, OPT_WITHDRAWN };
int index;
if ((objc < 3) || (objc > 4)) {