From: Mark Wooding Date: Sun, 30 Aug 2015 09:58:38 +0000 (+0100) Subject: src/c-types-parse.lisp: Some better comment formatting. X-Git-Tag: 0.2.0~11 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/sod/commitdiff_plain/63a86f42b0da1a64f8970c3f3cc55d83c76e83df src/c-types-parse.lisp: Some better comment formatting. --- diff --git a/src/c-types-parse.lisp b/src/c-types-parse.lisp index 45336a1..b398ca9 100644 --- a/src/c-types-parse.lisp +++ b/src/c-types-parse.lisp @@ -372,7 +372,7 @@ (defun parse-declarator (scanner base-type &key kernel abstractp) (cons #'identity name)))) (argument-list () - ;; [ argument [ `,' argument ]* [ `,' `...' ] ] | `...' + ;; [argument [`,' argument]* [`,' `...']] | `...' ;; ;; The possibility of a trailing `,' `...' means that we ;; can't use the standard `list' parser. Note that, unlike