Skip to content

Commit

Permalink
FvwmPrompt: fix syntax
Browse files Browse the repository at this point in the history
No need for the semi-colon.
  • Loading branch information
ThomasAdam committed Dec 21, 2024
1 parent 3ff0e76 commit ba6065a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/FvwmPrompt/FvwmPrompt.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func main() {
go connectToFMD(shell, readFromFMD, writeToFMD)

if isInteractive {
handleInput(nil, strings.Join(os.Args[1:], " "), writeToFMD);
handleInput(nil, strings.Join(os.Args[1:], " "), writeToFMD)
} else {
red := color.New(color.FgRed).SprintFunc()
shell.Actions.SetPrompt(red(*cmdLineArgs.promptText))
Expand Down

0 comments on commit ba6065a

Please sign in to comment.