diff --git a/api/main.go b/api/main.go index 8e475fc..254bb98 100644 --- a/api/main.go +++ b/api/main.go @@ -71,7 +71,7 @@ func Execute(res http.ResponseWriter, req *http.Request) { "cpp", "c++", "csharp", "cs", "c#", "elixir", "exs", - "emacs", "elisp", "el", + "emacs", "elisp", "el", "lisp", "go", "java", "julia", "jl", @@ -142,7 +142,7 @@ func launch(request Inbound, res http.ResponseWriter) { execlang = "cpp" case "cs", "c#": execlang = "csharp" - case "el", "elisp": + case "el", "elisp", "lisp": execlang = "emacs" case "exs": execlang = "elixir" diff --git a/lxc/execute b/lxc/execute index 05d6175..791b182 100755 --- a/lxc/execute +++ b/lxc/execute @@ -99,7 +99,7 @@ case "$lang" in "swift") bin=swift ;; -"emacs" | "elisp" | "el") +"emacs" | "elisp" | "el" | "lisp") bin=emacs ;; "bash")