diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-12-16 23:19:31 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-12-16 23:19:31 -0800 |
commit | 0c5016a7f39a6a70018949da90f3b9737bf945de (patch) | |
tree | 2adf23155ec3684d04296a100a218f456a2c7afc /parser.y | |
parent | 030ce483baef93392d54a4aec90bfa7b5906bc53 (diff) | |
download | txr-0c5016a7f39a6a70018949da90f3b9737bf945de.tar.gz txr-0c5016a7f39a6a70018949da90f3b9737bf945de.tar.bz2 txr-0c5016a7f39a6a70018949da90f3b9737bf945de.zip |
* lib.c (intern): fix the previous diagnostic bug once more with more
feeling.
* parser.l (grammar): Recognize package prefixes in symbol tokens.
Got rid of special rule for handling lone colon.
* parser.y (sym_helper): Catch undefined package as a parsing
error rather allowing intern function to throw exception.
Diffstat (limited to 'parser.y')
-rw-r--r-- | parser.y | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -902,9 +902,7 @@ static val sym_helper(wchar_t *lexeme, val meta_allowed) int leading_at = *lexeme == L'@'; wchar_t *tokfree = lexeme; wchar_t *colon = wcschr(lexeme, L':'); - val sym_name = nil; - val package = nil; - val sym; + val sym_name = nil, pkg_name = nil, package = nil, sym; if (leading_at) { if (!meta_allowed) { @@ -923,11 +921,12 @@ static val sym_helper(wchar_t *lexeme, val meta_allowed) sym_name = string(colon + 1); free(tokfree); } else if (colon != 0) { - package = string(lexeme); + pkg_name = string(lexeme); + package = find_package(pkg_name); sym_name = string(colon + 1); free(tokfree); if (!package) { - yyerrorf(lit("~a:~a: package ~a not found"), package, sym_name, package, nao); + yyerrorf(lit("~a:~a: package ~a not found"), pkg_name, sym_name, pkg_name, nao); return nil; } } else { |