diff --git a/automatic/fontforge/fontforge.nuspec b/automatic/fontforge/fontforge.nuspec
index 7259f01dd5..8ab7f78302 100644
--- a/automatic/fontforge/fontforge.nuspec
+++ b/automatic/fontforge/fontforge.nuspec
@@ -39,7 +39,7 @@ FontForge can also extract fonts fom PDFs and validate fonts for potential issue
]]>
https://github.com/fontforge/fontforge/releases
-
+
diff --git a/automatic/fontforge/tools/chocolateyuninstall.ahk b/automatic/fontforge/tools/chocolateyuninstall.ahk
index 20d716c3e6..85d580285f 100644
--- a/automatic/fontforge/tools/chocolateyuninstall.ahk
+++ b/automatic/fontforge/tools/chocolateyuninstall.ahk
@@ -1,15 +1,14 @@
-#NoEnv
#NoTrayIcon
-SendMode Input
-SetWorkingDir %A_ScriptDir%
-SetTitleMatchMode, 1 ;match if begins
-DetectHiddenText, off
-DetectHiddenWindows, off
-
-winTitle = ahk_class #32770
-
-WinWait, %winTitle%, Do you want to remove user preferences?, 120
-WinActivate
-Send,{Enter}
-
-ExitApp
\ No newline at end of file
+SendMode("Input")
+SetWorkingDir(A_ScriptDir)
+SetTitleMatchMode(1) ;match if begins
+DetectHiddenText(false)
+DetectHiddenWindows(false)
+
+winTitle := "ahk_class #32770"
+
+WinWait(winTitle, "Do you want to remove user preferences?", 120)
+WinActivate()
+Send("{Enter}")
+
+ExitApp()
\ No newline at end of file