summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-07 14:40:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-07 14:40:39 +0000
commit69e5eb35d364d233ee216952fa718020586e747d (patch)
tree85f6251ded78a47fa384b28a01765c6d02595951
parent66661034808e5e1dab0683aff4e74d72bba042cc (diff)
ast.c: adjust indent
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ast.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ast.c b/ast.c
index d295ff9157..b70df0a4f3 100644
--- a/ast.c
+++ b/ast.c
@@ -1,3 +1,4 @@
+/* indent-tabs-mode: nil */
#include "ruby.h"
#include "ruby/encoding.h"
#include "internal.h"
@@ -380,7 +381,7 @@ node_children(rb_ast_t *ast, NODE *node)
dot:
return rb_ary_new_from_node_args(ast, 2, node->nd_beg, node->nd_end);
case NODE_SELF:
- return rb_ary_new_from_node_args(ast, 0);
+ return rb_ary_new_from_node_args(ast, 0);
case NODE_NIL:
return rb_ary_new_from_node_args(ast, 0);
case NODE_TRUE: