aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-30 21:42:28 +0000
committerRichard M. Stallman1993-05-30 21:42:28 +0000
commitb2ba7b00f26c2ea6cf837c7e86e50194a1b9804d (patch)
tree7fa116e9b935bdc74ec6719dc29d2354ec300207 /src
parent6da3d9e5d31565c672f2918b21f557aa075c896d (diff)
downloademacs-b2ba7b00f26c2ea6cf837c7e86e50194a1b9804d.tar.gz
emacs-b2ba7b00f26c2ea6cf837c7e86e50194a1b9804d.zip
(UCHAR): Don't define if _UCHAR_T.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h
index a41a73269e5..8efdd8daa08 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -565,7 +565,10 @@ struct Lisp_Float
565 565
566/* A character, declared with the following typedef, is a member 566/* A character, declared with the following typedef, is a member
567 of some character set associated with the current buffer. */ 567 of some character set associated with the current buffer. */
568#ifndef _UCHAR_T /* Protect against something in ctab.h on AIX. */
569#define _UCHAR_T
568typedef unsigned char UCHAR; 570typedef unsigned char UCHAR;
571#endif
569 572
570/* Meanings of slots in a Lisp_Compiled: */ 573/* Meanings of slots in a Lisp_Compiled: */
571 574