comparison src/m/orion.h @ 750:1ffd52c765c7

entered into RCS
author Jim Blandy <jimb@redhat.com>
date Tue, 07 Jul 1992 19:52:37 +0000
parents c0335c02f1d7
children 7be0f0a02725
comparison
equal deleted inserted replaced
749:593af70322f0 750:1ffd52c765c7
51 /* Define WORD_MACHINE if addresses and such have 51 /* Define WORD_MACHINE if addresses and such have
52 * to be corrected before they can be used as byte counts. */ 52 * to be corrected before they can be used as byte counts. */
53 53
54 #define WORD_MACHINE 54 #define WORD_MACHINE
55 55
56 /* Define how to take a char and sign-extend into an int.
57 On machines where char is signed, this is a no-op. */
58
59 #define SIGN_EXTEND_CHAR(c) ((((int) (c)) << 24) >> 24)
60
61 /* Use type int rather than a union, to represent Lisp_Object */ 56 /* Use type int rather than a union, to represent Lisp_Object */
62 /* This is desirable for most machines. */ 57 /* This is desirable for most machines. */
63 58
64 #define NO_UNION_TYPE 59 #define NO_UNION_TYPE
65 60