]> code.delx.au - gnu-emacs/blobdiff - src/m/att3b.h
Delete the autoloads for functions defined with ibuffer-specific commands.
[gnu-emacs] / src / m / att3b.h
index 8dadec23cfdb5e5cf9a3bcab68185be48c31511a..394f3db959f919c1348be6b6ef4af4e0717cde97 100644 (file)
@@ -17,26 +17,18 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with GNU Emacs; see the file COPYING.  If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.  */
 
 
 /* The following line tells the configuration script what sort of 
    operating system this machine is likely to run.
    USUAL-OPSYS="usg5-2-2"  */
 
-/* The following three symbols give information on
- the size of various data types.  */
-
-#define SHORTBITS 16            /* Number of bits in a short */
-
-#define INTBITS 32              /* Number of bits in an int */
-
-#define LONGBITS 32             /* Number of bits in a long */
-
-/* Define BIG_ENDIAN iff lowest-numbered byte in a word
+/* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word
    is the most significant byte.  */
 
-#define BIG_ENDIAN
+#define WORDS_BIG_ENDIAN
 
 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a
  * group of arguments and treat it as an array of the arguments.  */
@@ -58,7 +50,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define NO_UNION_TYPE
 
 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend
-   the 24-bit bit field into an int.  In other words, if bit fields
+   the bit field into an int.  In other words, if bit fields
    are always unsigned.
 
    If you use NO_UNION_TYPE, this flag does not matter.  */
@@ -136,10 +128,9 @@ extern int sign_extend_temp;
 #if u3b2 || u3b5 || u3b15
 
 /* On 3b2/5/15, data space has high order bit on. */
+#define VALBITS 27
 #define VALMASK (((1<<VALBITS) - 1) | (1 << 31))
-#define XTYPE(a) ((enum Lisp_Type) (((a) >> VALBITS) & 0x7F))
-#define GCTYPEBITS 5
-#define XADDRFIX(a)    ((a) |= 0X80000000)     /* Because of high order */
+#define XTYPE(a) ((enum Lisp_Type) (((a) >> VALBITS) & GCTYPEMASK))
 
 #endif /* 3b2, 3b5 or 3b15 */
 
@@ -161,3 +152,6 @@ extern int sign_extend_temp;
 /* It is safe to have no parens around the args in the safe_bcopy call,
    and parens would screw up the prototype decl for memmove.  */
 #define        memmove(d, s, n) safe_bcopy (s, d, n)
+
+/* This affects filemode.c.  */
+#define NO_MODE_T