1
0
Fork 0
mirror of https://github.com/engineer-man/piston.git synced 2025-05-16 00:26:27 +02:00

Add "lisp" as an alias for "elisp" and "el"

This commit is contained in:
Gianluca Recchia 2020-06-09 09:59:44 +02:00
parent 0c152fcd72
commit 7f8b4b19ce
No known key found for this signature in database
GPG key ID: 3C2B4128D9A1F218
2 changed files with 3 additions and 3 deletions

View file

@ -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"

View file

@ -99,7 +99,7 @@ case "$lang" in
"swift")
bin=swift
;;
"emacs" | "elisp" | "el")
"emacs" | "elisp" | "el" | "lisp")
bin=emacs
;;
"bash")