annotate src/m/README @ 5595:391d809fa4e9

Update tests that have started failing because of changed design decisions. 2011-11-09 Aidan Kehoe <kehoea@parhasard.net> Update some tests that have started failing because of some changed design decisions. * automated/lisp-tests.el (eq): (type-of 42) now returns the symbol fixnum. * automated/lisp-tests.el (needs-lexical-context): (function ...) doesn't create a lexical context, and this is now the case in interpreted as well as in compiled code. * automated/mule-tests.el (featurep): Silence messages when byte-compiling files; if a file doesn't have the escape-quoted coding cookie, it will now have the raw-text-unix coding cookie, look for that instead of looking for the absence of the escape-quoted coding cookie.
author Aidan Kehoe <kehoea@parhasard.net>
date Wed, 09 Nov 2011 13:16:19 +0000
parents 3ecd8885ac67
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1 This directory contains C header files containing machine-specific
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2 definitions. Each file describes a particular machine. The emacs
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3 configuration script edits ../config.h to include the appropriate one of
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
4 these files, and then each emacs source file includes config.h.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
6 template.h is a generic template for machine descriptions; it
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
7 describes the parameters a machine file can specify.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
8
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
9
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
10 General XEmacs Changes
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
11 ----------------------
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
12 1. Removed all code dealing with VALBITS and XSET*. These are handled
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
13 differently in XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
14
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
15 2. Removed all defines of WORDS_BIGENDIAN. Now determined by configure.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
16
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
17 3. Put #ifndef PURESIZE around all PURESIZE defines so that it can be
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
18 overridden at configure time.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
19
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
20 4. Removed all defines of NO_ARG_ARRAY. The arg-array hack is not
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
21 done in XEmacs. (If you want to put it back, use configure --
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
22 autoconf has a check for this.)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
23
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
24 5. Removed all defines of BITS_PER_INT, BITS_PER_LONG -- now
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
25 determined by configure.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
26
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
27 See ../s/README for a list of other changes made to the FSF 19.30
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
28 configuration files for XEmacs.