chiark / gitweb /
src/c-types-parse.lisp: Some better comment formatting.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 30 Aug 2015 09:58:38 +0000 (10:58 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 6 Sep 2015 20:37:01 +0000 (21:37 +0100)
src/c-types-parse.lisp

index 45336a1e74904ceef07d8893c4ea72d4521f121e..b398ca9b405cf215daec995893884bdabec6554a 100644 (file)
@@ -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