diff options
| author | Paul Eggert | 2019-01-01 01:12:10 +0000 |
|---|---|---|
| committer | Paul Eggert | 2019-01-01 01:12:44 +0000 |
| commit | d9ba26ec2d56e8407094571769c847b78e7c524e (patch) | |
| tree | bd4845a5be996d5fa20ab028b672fa2b839276a7 /src | |
| parent | c5bbf67d5ca36f83f57139f300a76dfc164dffba (diff) | |
| download | emacs-d9ba26ec2d56e8407094571769c847b78e7c524e.tar.gz emacs-d9ba26ec2d56e8407094571769c847b78e7c524e.zip | |
Remove UCHAR typedef
* src/lisp.h (_UCHAR_T, UCHAR): Remove. This workaround for
circa-1993 old-AIX has evidently not been needed for decades.
Tested on AIX 7.1, the oldest AIX version IBM still supports.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lisp.h b/src/lisp.h index bda848430a2..303f093d758 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2683,13 +2683,6 @@ XFLOAT_DATA (Lisp_Object f) | |||
| 2683 | #define IEEE_FLOATING_POINT (FLT_RADIX == 2 && FLT_MANT_DIG == 24 \ | 2683 | #define IEEE_FLOATING_POINT (FLT_RADIX == 2 && FLT_MANT_DIG == 24 \ |
| 2684 | && FLT_MIN_EXP == -125 && FLT_MAX_EXP == 128) | 2684 | && FLT_MIN_EXP == -125 && FLT_MAX_EXP == 128) |
| 2685 | 2685 | ||
| 2686 | /* A character, declared with the following typedef, is a member | ||
| 2687 | of some character set associated with the current buffer. */ | ||
| 2688 | #ifndef _UCHAR_T /* Protect against something in ctab.h on AIX. */ | ||
| 2689 | #define _UCHAR_T | ||
| 2690 | typedef unsigned char UCHAR; | ||
| 2691 | #endif | ||
| 2692 | |||
| 2693 | /* Meanings of slots in a Lisp_Compiled: */ | 2686 | /* Meanings of slots in a Lisp_Compiled: */ |
| 2694 | 2687 | ||
| 2695 | enum Lisp_Compiled | 2688 | enum Lisp_Compiled |