2
3
Mirror von https://github.com/sammy-ette/Hilbish synchronisiert 2025-08-10 02:52:03 +00:00

fix: call cont next in prompt function

this continues execution of lua, very obvious
fixes an issue with code stopping at the prompt function
Dieser Commit ist enthalten in:
TorchedSammy 2022-03-28 16:30:04 -04:00
Ursprung 016a3a2ec7
Commit 9fc2247c20
Signiert von: sammyette
GPG-Schlüssel-ID: 904FC49417B44DCD

2
api.go
Datei anzeigen

@ -271,7 +271,7 @@ func hlprompt(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
} }
lr.SetPrompt(fmtPrompt(prompt)) lr.SetPrompt(fmtPrompt(prompt))
return nil, nil return c.Next(), nil
} }
// multiprompt(str) // multiprompt(str)