summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-20 22:18:48 (GMT)
committerGuido van Rossum <guido@python.org>1997-05-20 22:18:48 (GMT)
commit2f75b29630787fbec2aa1e2ec9d02180b7b0903f (patch)
treec6fe5a2e3d84d6200518286b07ad9291a8d4f8f2
parenta9040ec5d9dc92bc8beb41de2a7f1f5cbb2b917a (diff)
downloadcpython-2f75b29630787fbec2aa1e2ec9d02180b7b0903f.zip
cpython-2f75b29630787fbec2aa1e2ec9d02180b7b0903f.tar.gz
cpython-2f75b29630787fbec2aa1e2ec9d02180b7b0903f.tar.bz2
Indent the #error directives so a classic K&R cpp doesn't see them.
-rw-r--r--Python/compile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/compile.c b/Python/compile.c
index e6918a9..155142a 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -63,13 +63,13 @@ PERFORMANCE OF THIS SOFTWARE.
(which defines too many confusing symbols), but we can check here
that they haven't changed (which is very unlikely, but possible). */
#if Py_single_input != single_input
-#error "single_input has changed -- update Py_single_input in Python.h"
+ #error "single_input has changed -- update Py_single_input in Python.h"
#endif
#if Py_file_input != file_input
-#error "file_input has changed -- update Py_file_input in Python.h"
+ #error "file_input has changed -- update Py_file_input in Python.h"
#endif
#if Py_eval_input != eval_input
-#error "eval_input has changed -- update Py_eval_input in Python.h"
+ #error "eval_input has changed -- update Py_eval_input in Python.h"
#endif
int Py_OptimizeFlag = 0;