diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-07-23 12:05:05 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-07-23 12:05:05 (GMT) |
commit | 7516cd5e8150e7f6850179ace35622b186237401 (patch) | |
tree | d10012d68d0dcbefe3edeaf3272e42f49a21f71c /parser.y | |
parent | f78917d4dee78b720d41bbd59eee82ceaca95454 (diff) |
Clifford Wolf:
Added '%' for background stuff
git-svn-id: http://svn.clifford.at/openscad/trunk@69 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'parser.y')
-rw-r--r-- | parser.y | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -179,6 +179,10 @@ single_module_instantciation: '#' single_module_instantciation { $$ = $2; $$->tag_highlight = true; + } | + '%' single_module_instantciation { + $$ = $2; + $$->tag_background = true; }; expr: |