]> git.lizzy.rs Git - nothing.git/commitdiff
Remove superfluous "defun" in specials
authorSzymon Walter <walter.szymon.98@gmail.com>
Sun, 6 Jan 2019 00:36:06 +0000 (01:36 +0100)
committerGitHub <noreply@github.com>
Sun, 6 Jan 2019 00:36:06 +0000 (01:36 +0100)
`"defun"` appeared twice in `const char *specials[]`

src/ebisp/builtins.c

index 6a20c0fc7de59c7bada220a4dd52257ad746029d..a6a99aed71ec87a1bfd4a1199d681057eb2b3fdd 100644 (file)
@@ -175,7 +175,7 @@ bool is_lambda(struct Cons *cons) {
 const char *specials[] = {
     "set", "quote", "begin",
     "defun", "lambda", "λ",
-    "defun", "when", "quasiquote"
+    "when", "quasiquote"
 };
 
 bool is_special(const char *name)