From: Mark Wooding Date: Sun, 26 Mar 2017 14:16:18 +0000 (+0100) Subject: src/module-parse.lisp: Use `quote', not `list', to make constant lists. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/sod/commitdiff_plain/abfdb01c8df52efd0ee4a4a98519d9aebd1956d9 src/module-parse.lisp: Use `quote', not `list', to make constant lists. --- diff --git a/src/module-parse.lisp b/src/module-parse.lisp index 63d75cd..3f6c224 100644 --- a/src/module-parse.lisp +++ b/src/module-parse.lisp @@ -327,7 +327,7 @@ (defun parse-class-body (scanner pset name supers) ;; ;; Return a VALUE, ready for passing to a `sod-initializer' ;; constructor. - (parse-delimited-fragment scanner #\= (list #\, #\;) + (parse-delimited-fragment scanner #\= '(#\, #\;) :keep-end t)) (parse-slot-item (sub-pset base-type type name)