Removed trailing tabs.

This commit is contained in:
Serhiy Storchaka 2015-03-21 09:25:53 +02:00
parent e9ae8340a3
commit f402775e5d
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ PyAPI_FUNC(Py_ssize_t) _PyNode_SizeOf(node *n);
/* Node access functions */
#define NCH(n) ((n)->n_nchildren)
#define CHILD(n, i) (&(n)->n_child[i])
#define RCHILD(n, i) (CHILD(n, NCH(n) + i))
#define TYPE(n) ((n)->n_type)