Commit 09038b86 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Removed trailing tabs.

parent ba096314
...@@ -37,7 +37,7 @@ typedef struct { ...@@ -37,7 +37,7 @@ typedef struct {
typedef struct { typedef struct {
int s_narcs; int s_narcs;
arc *s_arc; /* Array of arcs */ arc *s_arc; /* Array of arcs */
/* Optional accelerators */ /* Optional accelerators */
int s_lower; /* Lowest label index */ int s_lower; /* Lowest label index */
int s_upper; /* Highest label index */ int s_upper; /* Highest label index */
......
...@@ -26,7 +26,7 @@ PyAPI_FUNC(Py_ssize_t) _PyNode_SizeOf(node *n); ...@@ -26,7 +26,7 @@ PyAPI_FUNC(Py_ssize_t) _PyNode_SizeOf(node *n);
/* Node access functions */ /* Node access functions */
#define NCH(n) ((n)->n_nchildren) #define NCH(n) ((n)->n_nchildren)
#define CHILD(n, i) (&(n)->n_child[i]) #define CHILD(n, i) (&(n)->n_child[i])
#define RCHILD(n, i) (CHILD(n, NCH(n) + i)) #define RCHILD(n, i) (CHILD(n, NCH(n) + i))
#define TYPE(n) ((n)->n_type) #define TYPE(n) ((n)->n_type)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment