about summary refs log tree commit diff
path: root/Src/options.c
diff options
context:
space:
mode:
authorBart Schaefer <schaefer@ipost.com>2021-04-12 13:59:06 -0700
committerBart Schaefer <schaefer@ipost.com>2021-04-12 13:59:06 -0700
commitb3613e4895f7b059558c4ef211189b516dbf903d (patch)
tree5ac6989a564cfb079b73a1f13a3d2a89ff881bb9 /Src/options.c
parente67ccd7f1efae7696dc17f6e3e720cd994e90155 (diff)
downloadzsh-b3613e4895f7b059558c4ef211189b516dbf903d.tar.gz
zsh-b3613e4895f7b059558c4ef211189b516dbf903d.tar.xz
zsh-b3613e4895f7b059558c4ef211189b516dbf903d.zip
Change TYPESET_DOES_NOT_SET to TYPESET_TO_UNSET to avoid double-negative
Diffstat (limited to 'Src/options.c')
-rw-r--r--Src/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/options.c b/Src/options.c
index 766ffdfdb..23935ae18 100644
--- a/Src/options.c
+++ b/Src/options.c
@@ -257,8 +257,8 @@ static struct optname optns[] = {
 {{NULL, "sunkeyboardhack",    0},			 SUNKEYBOARDHACK},
 {{NULL, "transientrprompt",   0},			 TRANSIENTRPROMPT},
 {{NULL, "trapsasync",	      0},			 TRAPSASYNC},
-{{NULL, "typesetdoesnotset",  OPT_EMULATE|OPT_BOURNE},	 TYPESETDOESNOTSET},
 {{NULL, "typesetsilent",      OPT_EMULATE|OPT_BOURNE},	 TYPESETSILENT},
+{{NULL, "typesettounset",     OPT_EMULATE|OPT_BOURNE},	 TYPESETTOUNSET},
 {{NULL, "unset",	      OPT_EMULATE|OPT_BSHELL},	 UNSET},
 {{NULL, "verbose",	      0},			 VERBOSE},
 {{NULL, "vi",		      0},			 VIMODE},