From 002d481f71272b0605ac310f3cea595780dae531 Mon Sep 17 00:00:00 2001 Message-Id: <002d481f71272b0605ac310f3cea595780dae531.1715434610.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 26 Mar 2017 15:16:18 +0100 Subject: [PATCH] src/module-parse.lisp: Use `dotted-name', not `dotted-identifier'. Organization: Straylight/Edgeware From: Mark Wooding An identifier is a single token, and therefore can't be dotted. I appear to have gotten this one right everywhere else. --- src/module-parse.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- [mdw]