- Oct 16, 2004
- Oct 15, 2004
-
-
cwang authored
-
- Oct 14, 2004
-
-
rtoy authored
Bug noted by Bruno Haible, cmucl-imp, 2004-10-07.
-
rtoy authored
license. pprint-loop.lisp: o New file containing the loop pprinter, with XP license pprint.lisp: o Remove loop pprinter code. o Call initializer to enable the loop pprinter at the right time. worldcom.lisp: o Compile pprint-loop worldload.lisp: o Load pprint-loop at the right time.
-
rtoy authored
handle the situation of the key T when used as a normal clause. From Bruno Haible, cmucl-imp, 2004-10-13.
-
- Oct 13, 2004
-
-
rtoy authored
through assembly functions a bit smarter. DEBUG-FUNCTION-FROM-PC modified so that it recognizes assembly routines and simply returns a BOGUS-DEBUG-FUNCTION in that case.
-
rtoy authored
no debug-variable information because that prevents the user from evaluating other stuff. Leave a warning in, but maybe we should remove this as well?
-
- Oct 12, 2004
- Oct 09, 2004
-
-
rtoy authored
file associated with a stream that has no file (like broadcast streams, etc.). Fixes ANSI test logical-pathname.error.4 and friends.
-
rtoy authored
PPRINT-LOGICAL-BLOCK is NIL. Fixes ANSI test pprint-pop.9.
-
rtoy authored
Fixes ANSI test make-symbol.13 and friends.
-
rtoy authored
that seems to depend on what CPU is being used. Jon Boone says it's 64 on a G5. It's some other weird value for a G4. o Change TIME output to say "time-base cycles" instead of "CPU cycles" for PPC, so the user isn't confused when (time (sleep 1)) returns something unexpected.
-
rtoy authored
incremente once every 16 clock cycles on a 400 MHz iMac G3. We assume that's true for other ppc's.
-
rtoy authored
time-base.
-
- Oct 08, 2004
-
-
rtoy authored
that PPRINT-EXIT-IF-LIST-EXHAUSTED is called, the END-LOGICAL-BLOCK stuff gets a chance to run. Without it, the outer logical block would get the wrong suffix for the END-LOGICAL-BLOCK stuff, because it would pick off the inner blocks stuff. o Add a pretty-printer for LOOP. From Dick Water's XP. o Some pprinter changes to print some forms in a more typical manner. Hopefully nothing controversial.
-
- Oct 07, 2004
-
-
rtoy authored
HANDLER-CASE. o Add a pprinter for MULTIPLE-VALUE-BIND, instead of using the PROGV printer. Use it for WITH-CONDITION-RESTARTS, too. (Is this right?)
-
rtoy authored
longer than the default. o The RLWINM instruction is complicated. Add a note printer so that the simplified mnemonic is printed as a note when possible. (Not all simplified mnemonics are currently supported.) o Enable the BLRL instruction.
-
- Oct 06, 2004
-
-
rtoy authored
o Fix FAST-ASH/UNSIGNED=>UNSIGNED vop where the amount might be greater than 31.
-
emarsden authored
be card32 instead of card16 entities, as per the ICCCM specification. This fixes a problem seen running CLX on MacOS X with X11.app.
-
rtoy authored
was broken by not setting the length word of a bignum. How could anything have worked? This fixes the truncate issue noted on cmucl-imp.
-
- Oct 05, 2004
-
-
rtoy authored
ANSI-LOOP::WITH-LOOP-LIST-COLLECTION-HEAD. We should teach CMUCL how to pprint other things too.
-
rtoy authored
removes the :slot initarg. These are all subsumed by the :name initarg and slot in a cell-error condition. This makes UNBOUND-SLOT no longer backward compatible. I hope that's ok.
-
rtoy authored
list may not be a proper list. Instead, use a special version of NTHCDR that will exit early if we reach the end of a non-proper list.
-
rtoy authored
the declaration on the list. Fixes the bug reported by Frode Vatvedt Fjeld on cmucl-imp, 2004/09/06: (compile (defun f (x) (loop for (a . b) on x collect a))) (f '(1 2 . 3)) => error It should return '(1 2).
-
- Oct 04, 2004
- Oct 01, 2004
-
-
rtoy authored
-
- Sep 28, 2004
-
-
rtoy authored
ensure-profile-fwrapper was not able to create profile fwrappers for 4 or more args. This is a hack; I don't know why the original version doesn't work.
-
- Sep 27, 2004
-
-
rtoy authored
determine if an array can be printed readably.
-
rtoy authored
(0 1 2 0 1 2) instead of (0 1 2 0 1 2 0 1 2). Bug fix from Peter Graves, via cmucl-imp, 2004-09-27.
-
rtoy authored
needs to be rethought because there's confusion on what pathnames can be printed readably or not. In particular (probe-file "logical-host:dir;") gets an error because there's a merge-pathname that creates a pathname without a name, but version :newest.
-
- Sep 25, 2004
-
-
rtoy authored
specializer. Fixes a bug reported by Bruno Haible, cmucl-imp, 2004-09-15.
-
- Sep 24, 2004
- Sep 23, 2004
-
-
rtoy authored
it always DPB'ed the result into -1, which always results in a negative number. We need to check the most significant bit to decide what to do.
-
rtoy authored
if the range of the arg were too large to fit in a float. Silently return unbounded value instead of signaling an error during compilation.
-
- Sep 21, 2004
-
-
emarsden authored
case.
-