]> code.delx.au - gnu-emacs/blobdiff - src/m/gec63.h
(ENCODE_FILE): Moved from fileio.c. Use
[gnu-emacs] / src / m / gec63.h
index 49213f6a425d85bd07aa47a00ed5419642634703..c0ca42809113d633198c9da949d9d909b738faa3 100644 (file)
@@ -15,25 +15,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"  */
 
-/* The following three symbols give information on
the size of various data types.  */
+/* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word
  is the most significant byte.  */
 
-#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 */
-
-/* GEC63 is big-endian: lowest numbered byte is most significant. */
-
-#define BIG_ENDIAN
+#define WORDS_BIG_ENDIAN
 
 /* Say this machine is a 68000 */
 
@@ -56,9 +49,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #undef TERMCAP
 #define TERMINFO
 
+#define NO_REMAP
+
+/* The rest of the file certainly needs updating for Emacs 19.29!  */
+
 /* Define sizes of portions of a Lisp_Object.  */
-#define VALBITS 22
-#define GCTYPEBITS 5
+#define VALBITS 24
 
 #define VALAMASK (((1<<VALBITS) - 1)| 0xF0000000L)
 
@@ -66,13 +62,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define XSETTYPE(a, b) ((a)  =  ((a) & VALAMASK)  +  ((int)(b) << VALBITS))
 
 #define XPNTR(a) ((a) & VALAMASK)
-#define XSETPNTR(a, b) ((a) = ((a) & ~VALAMASK)  +  ((b) & VALAMASK))
 
 #define XSET(var, type, ptr) \
    ((var) = ((int)(type) << VALBITS) + ((int) (ptr) & VALAMASK))
 
 /* Move some garbage-collector flag bits to different bit positions.  */
 #define ARRAY_MARK_FLAG (1 << 27)
-#define DONT_COPY_FLAG (1 << 26)
-
-#define NO_REMAP