mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
* node.h (NEW_DSTR): adjust list length.
* parse.y (literal_concat): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6356 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3375c0bf6a
commit
06ec039005
3 changed files with 8 additions and 1 deletions
2
node.h
2
node.h
|
@ -297,7 +297,7 @@ typedef struct RNode {
|
|||
#define NEW_MATCH3(r,n2) NEW_NODE(NODE_MATCH3,r,n2,0)
|
||||
#define NEW_LIT(l) NEW_NODE(NODE_LIT,l,0,0)
|
||||
#define NEW_STR(s) NEW_NODE(NODE_STR,s,0,0)
|
||||
#define NEW_DSTR(s) NEW_NODE(NODE_DSTR,s,0,0)
|
||||
#define NEW_DSTR(s) NEW_NODE(NODE_DSTR,s,1,0)
|
||||
#define NEW_XSTR(s) NEW_NODE(NODE_XSTR,s,0,0)
|
||||
#define NEW_DXSTR(s) NEW_NODE(NODE_DXSTR,s,0,0)
|
||||
#define NEW_DSYM(s) NEW_NODE(NODE_DSYM,s,0,0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue