From: Serhiy Storchaka Date: Sat, 21 Mar 2015 07:25:53 +0000 (+0200) Subject: Removed trailing tabs. X-Git-Tag: v3.5.0a3~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f402775e5d886e76613101c5ec75616e7628293c;p=thirdparty%2FPython%2Fcpython.git Removed trailing tabs. --- diff --git a/Include/grammar.h b/Include/grammar.h index ba7d19d821b6..85120b9be963 100644 --- a/Include/grammar.h +++ b/Include/grammar.h @@ -37,7 +37,7 @@ typedef struct { typedef struct { int s_narcs; arc *s_arc; /* Array of arcs */ - + /* Optional accelerators */ int s_lower; /* Lowest label index */ int s_upper; /* Highest label index */ diff --git a/Include/node.h b/Include/node.h index 2e4e2bada7f2..654ad8582301 100644 --- a/Include/node.h +++ b/Include/node.h @@ -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)