Mercurial > hg > xemacs-beta
annotate src/s/umips.h @ 4686:cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
lisp/ChangeLog addition:
2009-08-31 Aidan Kehoe <kehoea@parhasard.net>
* byte-optimize.el (byte-optimize-form-code-walker):
Be careful about discarding multiple values when optimising
#'prog1 calls.
(byte-optimize-or):
Preserve any trailing nil, as this is a supported way to
explicitly discard multiple values.
(byte-optimize-cond-1):
Discard multiple values with a singleton followed by no more
clauses.
* bytecomp.el (progn):
(prog1):
(prog2):
Be careful about discarding multiple values in the byte-hunk
handler of these three forms.
* bytecomp.el (byte-compile-prog1, byte-compile-prog2):
Don't call #'values explicitly, use `(or ,(pop form) nil) instead,
since that compiles to bytecode, not a funcall.
* bytecomp.el (byte-compile-values):
With one non-const argument, byte-compile to `(or ,(second form)
nil), not an explicit #'values call.
* bytecomp.el (byte-compile-insert-header):
Be nicer in the error message to emacs versions that don't
understand our bytecode.
src/ChangeLog addition:
2009-08-31 Aidan Kehoe <kehoea@parhasard.net>
* eval.c (For, Fand):
Don't declare val as REGISTER in these functions, for some reason
it breaks the non-DEBUG union build. These functions are only
called from interpreted code, the performance implication doesn't
matter. Thank you Robert Delius Royar!
* eval.c (Fmultiple_value_list_internal):
Error on too many arguments.
tests/ChangeLog addition:
2009-08-31 Aidan Kehoe <kehoea@parhasard.net>
* automated/lisp-tests.el (Assert-rounding):
Remove an overly-verbose failure message here.
Correct a couple of tests which were buggy in themselves. Add
three new tests, checking the behaviour of #'or and #'and when
passed zero arguments, and a Known-Bug-Expect-Failure call
involving letf and values. (The bug predates the C-level
multiple-value implementation.)
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 06 Sep 2009 19:36:02 +0100 |
parents | 023b83f4e54b |
children |
rev | line source |
---|---|
428 | 1 /* Synched up with: FSF 19.31. */ |
2 | |
613 | 3 /* Definitions file for XEmacs running on Mips operating system. |
428 | 4 That system can emulate either BSD or Sys V, in either case with changes. |
5 If BSD is defined, we assume BSD is being emulated; otherwise, Sys V. */ | |
6 | |
7 #ifdef BSD | |
8 #include "bsd4-3.h" | |
9 | |
10 #define C_SWITCH_SYSTEM "-systype bsd43" | |
11 #define LD_SWITCH_SYSTEM "-systype bsd43" | |
12 #undef LIBS_SYSTEM | |
13 #define LIBS_DEBUG | |
14 #define START_FILES "pre-crt0.o /lib/crt1.o" | |
15 #define LIB_STANDARD "-lc /usr/lib/crtn.o" | |
16 | |
17 #define COFF | |
18 #define TERMINFO | |
19 #undef MAIL_USE_FLOCK /* Someone should check this. */ | |
20 | |
21 #else /* not BSD */ | |
22 | |
23 #define DONT_DEFINE_NO_REMAP /* `static' hack not needed */ | |
24 #include "usg5-2-2.h" | |
25 | |
26 #undef LIBS_SYSTEM | |
27 #define LIBS_DEBUG | |
28 #define START_FILES "pre-crt0.o /usr/lib/crt1.o" | |
29 #define LIB_STANDARD "-lbsd -lc /usr/lib/crtn.o" | |
30 /* #define LIBS_TERMCAP -lcurses */ | |
31 | |
32 #define C_SWITCH_SYSTEM "-I/usr/include/bsd" | |
33 | |
34 /* Don't try to use SIGIO even though it is defined. */ | |
35 #define BROKEN_SIGIO | |
36 | |
37 /* Describe special kernel features. */ | |
38 | |
39 #if defined(emacs) | |
40 #include <bsd/sys/time.h> | |
41 #endif | |
42 | |
43 /* The `select' in the system won't work for pipes, | |
44 so don't use it. */ | |
45 #define BROKEN_SELECT | |
46 | |
47 /* ??? */ | |
48 #define IRIS | |
49 | |
50 #endif /* not BSD */ | |
51 | |
52 /* High order bit must be stripped off nlist return values */ | |
53 #define FIXUP_KERNEL_SYMBOL_ADDR(NL) (NL)[0].n_value &= 0x7fffffff; |