From: Mark Wooding Date: Sun, 26 Mar 2017 14:16:18 +0000 (+0100) Subject: src/module-parse.lisp: Use `dotted-name', not `dotted-identifier'. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/sod/commitdiff_plain/002d481f71272b0605ac310f3cea595780dae531 src/module-parse.lisp: Use `dotted-name', not `dotted-identifier'. An identifier is a single token, and therefore can't be dotted. I appear to have gotten this one right everywhere else. --- diff --git a/src/module-parse.lisp b/src/module-parse.lisp index 15bfe87..63d75cd 100644 --- a/src/module-parse.lisp +++ b/src/module-parse.lisp @@ -281,7 +281,7 @@ (defun parse-class-body (scanner pset name supers) ;; Parse a declarator or dotted-declarator, i.e., one whose ;; centre is ;; - ;; maybe-dotted-identifier ::= [id `.'] id + ;; maybe-dotted-name ::= [id `.'] id ;; ;; A plain identifier is returned as a string, as usual; a ;; dotted identifier is returned as a cons cell of the two