X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?p=wolf;a=blobdiff_plain;f=src%2Fmain%2Fchecker.lisp;h=dcbe9ec6fd1ad77b0dd8ea1001f48c8e4122c5f4;hp=f20b6a8944fbc96f9d2cf5d8c90aab92ddb15aad;hb=1f818db;hpb=1437fe10eb4bcfca53c8c4746fdf68ab37aba0c1 diff --git a/src/main/checker.lisp b/src/main/checker.lisp index f20b6a8..dcbe9ec 100644 --- a/src/main/checker.lisp +++ b/src/main/checker.lisp @@ -5,7 +5,7 @@ ; * No form longer than 50 lines ; - Top level multiline forms must be separated by exactly one space ; * No line longer than 120 characters -; - No use of unexported symbols in other packages +; * No use of unexported symbols in other packages ; * No tabs ; - Only one space between elements in a form on a single line ; * in-package must be first line in file unless file is package.lisp @@ -160,9 +160,8 @@ (cond ((not form) "Unmatched ending paren") ((< 50 (- *line-no* (car form))) "Forms can't be over 50 lines long"))))) - -(cl-ppcre:scan (cl-ppcre:create-scanner " *") " -asdf asdf") + (defevaluator :normal "::" + (constantly "No internal symbols from other packages")) (defevaluator :normal "." (constantly nil)) )