annotate src/m/README @ 4454:1f0aa40cafe0

Small improvements in disp-table.el, mule/cyril-util.el. 2008-05-11 Aidan Kehoe <kehoea@parhasard.net> * disp-table.el (make-display-table): [...] Also, I previously said #xFF when I meant ?\xFF; correct this. * mule/cyril-util.el (standard-display-cyrillic-translit): Make the selection of the default language more sensible; change the API a little to make a sensible default Cyrillic language available, checking current-language-environment.
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 11 May 2008 12:03:07 +0200
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.