Mercurial > hg > xemacs-beta
annotate src/s/irix5-1.h @ 985:7f62a956b825
[xemacs-hg @ 2002-09-01 06:41:40 by youngs]
2002-08-31 Seiichi Ikiuo <ikiuo@polyphony.co.jp>
* code-init.el (reset-coding-categories-to-default): Add new
coding category 'utf-8-bom'.
* coding.el (coding-system-category): Add check for 'utf-8-bom'.
* unicode.el: Add new coding system 'utf-8-bom'.
2002-08-31 Seiichi Ikiuo <ikiuo@polyphony.co.jp>
* file-coding.h (detection_result): fix DET_LOWEST.
* mule-coding.c
(big5_detector): Add member 'seen_euc_char'.
(big5_detect): It was made not to become the trouble of EUC.
(iso2022_detector): Add member 'longest_even_high_byte'.
(iso2022_detect): Fix checking for even/odd_high_byte_group.
The judgment of EUC is changed.
* unicode.c: Add DETECTOR_CATEGORY utf_8_bom.
(utf_8_detector): Add member byteno, first_byte and second_byte.
(utf_8_detect): The judgment of UTF-8-BOM is added.
author | youngs |
---|---|
date | Sun, 01 Sep 2002 06:41:45 +0000 |
parents | 3ecd8885ac67 |
children |
rev | line source |
---|---|
428 | 1 /* Synched up with: Not in FSF. */ |
2 | |
3 /* by Hayden Schultz <haydens@ll.mit.edu> for XEmacs */ | |
4 | |
5 #ifndef IRIX5_1_H | |
6 #define IRIX5_1_H | |
7 | |
8 #include "irix5-0.h" | |
9 | |
10 /* #### Questionable defines. */ | |
11 #define IRIX | |
12 #define IRIS | |
13 | |
14 /* XEmacs change */ | |
15 #if 0 | |
16 #define LD_SWITCH_SYSTEM "-elf -_SYSTYPE_SVR4 -require_dynamic_link _rld_new_interface -no_unresolved -Wx,-G 0 -L. -L./lwlib -g0 -call_shared -transitive_link" | |
17 #endif | |
18 | |
19 /* By Tor Arntsen <tor@spacetec.no> for XEmacs. | |
20 With the following kludge the above LD_SWITCH_SYSTEM will still work just | |
21 fine even with USE_GCC, and additional tweaking of config.h or ymakefile | |
22 is avoided. */ | |
23 #ifdef NOT_C_CODE | |
24 # ifdef USE_GCC | |
25 # undef LINKER | |
26 # undef LIB_GCC | |
27 # define LINKER "ld" | |
28 # define LIB_GCC "`gcc --print`" | |
29 # endif | |
30 #endif | |
31 | |
32 #endif /* IRIX5_1_H */ |