Skip to content

Commit

Permalink
Merge pull request #207 from IIIM-IS/symbol_expr-quote
Browse files Browse the repository at this point in the history
Compiler: Don't allow string as symbol so it doesn't restrict characters
  • Loading branch information
jefft0 authored Jan 21, 2022
2 parents 1389ee2 + b315fd3 commit 36fa213
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions r_comp/compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,7 @@ bool Compiler::symbol_expr(std::string &s) {
case '(':
case '[':
case ']':
case '\"':
case '.':
if (s == "mk") {

Expand Down

0 comments on commit 36fa213

Please sign in to comment.