Mercurial > hg > xemacs-beta
annotate src/s/hpux11.h @ 4623:a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
lisp/ChangeLog addition:
2009-02-22 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el (byte-compile-force-escape-quoted): New variable,
used to force `byte-compile-insert-header' to treat the output as
having characters above ?\xFF.
(byte-compile-from-buffer):
If the compiled output contains characters above ?\xFF, and
byte-compile-dynamic-docstrings or byte-compile-dynamic is non-nil
(or we're using an inappropriate coding system) recompile the
file, turning off the dynamic features and using a more
appropriate header.
(byte-compile-insert-header): Pay attention to
byte-compile-force-escape-quoted.
tests/ChangeLog addition:
2009-02-22 Aidan Kehoe <kehoea@parhasard.net>
* automated/mule-tests.el:
Use more realistic tests for the escape-quoted mule encoding
checks; update a comment, change a Known-Bug-Expect-Failure to a
normal test now that we've addressed an old bug.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 22 Feb 2009 19:57:28 +0000 |
parents | b2472a1930f2 |
children | aa5ed11f473b |
rev | line source |
---|---|
269 | 1 /* Synched up with: FSF 19.31. */ |
2 | |
3 /* System description file for hpux version 11. */ | |
4 | |
5 #include "hpux9-shr.h" | |
6 | |
7 /* We have to go this route, rather than hpux9's approach of renaming the | |
8 functions via macros. The system's stdlib.h has fully prototyped | |
9 declarations, which yields a conflicting definition of srand48; it | |
10 tries to redeclare what was once srandom to be srand48. So we go | |
11 with HAVE_LRAND48 being defined. */ | |
12 #undef srandom | |
13 #undef srand48 | |
14 #undef HAVE_RANDOM | |
15 #define HPUX10 | |
16 #define HPUX11 | |
17 /* AlainF 20-Jul-1996 -- fixes for 10.10, untested for 10.0x */ | |
18 /* Fix kernel file name for 10.10 and later */ | |
19 #undef KERNEL_FILE | |
20 #define KERNEL_FILE "/stand/vmunix" | |
21 | |
22 /* XEmacs: -lcurses includes a broken select() call on some 10.X systems. */ | |
23 /* #undef LIBS_TERMCAP */ | |
24 /* #define LIBS_TERMCAP "-ltermcap" */ |