aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-17 07:59:14 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-09-17 07:59:14 +0000
commitd508d00919dccbc9dd5d3c86508f2db7a7c753a7 (patch)
tree141cdfbf0908146bab12636e5b270e59ea06b3a5 /Include/unicodeobject.h
parentIssue #22493: Warning message emitted by using inline flags in the middle of (diff)
parentIssue #28139: Fix messed up indentation (diff)
downloadcpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.tar.gz
cpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.tar.bz2
cpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.zip
Issue #28139: Merge indentation fixes from 3.5 into 3.6
Diffstat (limited to 'Include/unicodeobject.h')
-rw-r--r--Include/unicodeobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index bc6ecd4e81e..20331a3905b 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -160,7 +160,7 @@ typedef uint8_t Py_UCS1;
#define Py_UNICODE_FILL(target, value, length) \
do {Py_ssize_t i_; Py_UNICODE *t_ = (target); Py_UNICODE v_ = (value);\
- for (i_ = 0; i_ < (length); i_++) t_[i_] = v_;\
+ for (i_ = 0; i_ < (length); i_++) t_[i_] = v_;\
} while (0)
/* macros to work with surrogates */