Add E_INDENT -- new error to check for bad indentation

This commit is contained in:
Guido van Rossum 1998-04-09 21:37:20 +00:00
parent e2bb8bb90d
commit e77a992a0d

View file

@ -51,6 +51,7 @@ PERFORMANCE OF THIS SOFTWARE.
#define E_NOMEM 15 /* Ran out of memory */
#define E_DONE 16 /* Parsing complete */
#define E_ERROR 17 /* Execution error */
#define E_INDENT 18 /* Invalid indentation detected */
#ifdef __cplusplus
}