From 3c7d194d340c59933934a14676f5e835bbc01fdc Mon Sep 17 00:00:00 2001 Message-Id: <3c7d194d340c59933934a14676f5e835bbc01fdc.1717572822.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 21 Apr 2020 12:57:06 +0100 Subject: [PATCH] bin/wakey.zsh: Fix a stupid syntax error. Organization: Straylight/Edgeware From: Mark Wooding ... which, for some reason, `zsh' accepted silently. --- bin/wakey.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/wakey.zsh b/bin/wakey.zsh index dd0432c..b0d8374 100644 --- a/bin/wakey.zsh +++ b/bin/wakey.zsh @@ -44,7 +44,7 @@ __wakey_precmd () { /^ *\(0x[0-9a-f]\+\) (.*$/s//\1/p }') do - if (( i == WINDOWID )) then; suppress=t; break; fi + if (( i == WINDOWID )); then suppress=t; break; fi done fi esac -- [mdw]