node.c (dump_node): trivial refactoring

This commit is contained in:
Yusuke Endoh 2021-11-17 23:38:19 +09:00
Родитель c400165afa
Коммит 5a7b4dba26
1 изменённых файлов: 1 добавлений и 3 удалений

4
node.c
Просмотреть файл

@ -677,10 +677,8 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
ANN("format: $[nd_nth]"); ANN("format: $[nd_nth]");
ANN("example: $&, $`, $', $+"); ANN("example: $&, $`, $', $+");
F_CUSTOM1(nd_nth, "variable") { F_CUSTOM1(nd_nth, "variable") {
char name[3]; char name[3] = "$ ";
name[0] = '$';
name[1] = (char)node->nd_nth; name[1] = (char)node->nd_nth;
name[2] = '\0';
A(name); A(name);
} }
return; return;