summaryrefslogtreecommitdiff
path: root/source/include/acutils.h
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2015-04-23 12:32:35 -0700
committerRobert Moore <Robert.Moore@intel.com>2015-04-23 12:32:35 -0700
commit08170904011f1e8f817d9e3a9f2bb2438aeacf60 (patch)
tree10473f3008fc38721960d0624ce160ca7ba11928 /source/include/acutils.h
parent7325b59c8b5d1522ded51ae6a76b804f6e8da5d2 (diff)
downloadacpica-08170904011f1e8f817d9e3a9f2bb2438aeacf60.tar.gz
iASL: Enhance detection of non-ascii or corrupted input files.
For the compiler part (not disassembler). - Characters not within a comment must be be ASCII (0-0x7F), and now either printable or a "space" character. Provides better detection of files that cannot be compiled.
Diffstat (limited to 'source/include/acutils.h')
-rw-r--r--source/include/acutils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/acutils.h b/source/include/acutils.h
index 2b3dad46f..93edeeec6 100644
--- a/source/include/acutils.h
+++ b/source/include/acutils.h
@@ -411,7 +411,7 @@ extern const UINT8 _acpi_ctype[];
#define _ACPI_DI 0x04 /* '0'-'9' */
#define _ACPI_LO 0x02 /* 'a'-'z' */
#define _ACPI_PU 0x10 /* punctuation */
-#define _ACPI_SP 0x08 /* space */
+#define _ACPI_SP 0x08 /* space, tab, CR, LF, VT, FF */
#define _ACPI_UP 0x01 /* 'A'-'Z' */
#define _ACPI_XD 0x80 /* '0'-'9', 'A'-'F', 'a'-'f' */