- Sep 28, 2009
-
-
rtoy authored
-
- Sep 09, 2009
-
-
rtoy authored
-
- Aug 24, 2009
-
-
rtoy authored
we don't have the functions for :e-crlf anymore.
-
- Aug 17, 2009
- Aug 11, 2009
-
-
rtoy authored
-
- Aug 10, 2009
-
-
rtoy authored
o Standard streams no longer change formats when *default-external-format* changes. Use stream:set-system-external-format instead, or (setf external-format). o char-to-octets properly handles surrogate characters being written. o Makes simple-streams work again. This change needs to be cross-compiled. 2009-07 binaries work for cross-compiling using the 19e/boot-2008-05-cross-unicode-*.lisp cross-compile script.
-
- Jul 24, 2009
-
-
rtoy authored
-
- Jul 23, 2009
-
-
rtoy authored
o Move the +ss-ef-foo+ constants to here from strategy.lisp, and update them so they don't overlap with existing +ef-foo+ constants. o Update +ef-max+ accordingly. pcl/simple-streams/impl.lisp: o Use +ss-ef-str+ instead of +ef-str+ in simple-stream-strlen. pcl/simple-streams/strategy.lisp: o Comment out +ss-ef-foo+ constants. o Use +ef-max+ instead of +ss-ef-max+, which is no longer defined. o Fix bugs in %dc-write-chars-fn: - Use ef variable - Need to call flush-out-buffer, not flush-buffer for dual-channel streams.
-
rtoy authored
internal.lisp: o Remove (debug 0) quality.
-
rtoy authored
o Add single-channel and dual-channel functions to write strings. This allows proper handling of strings with surrogates. rt/simple-streams-test.lisp: o Add test for writing a large string with surrogate characters.
-
rtoy authored
o For all tests that generate random characters, be sure to specify an external format of iso8859-1, just in case *default-external-format* is something else that might cause issues with random characters.
-
rtoy authored
o Update %read-chars-fn to support surrogates so that we can read surrogate pairs and correctly place them in a string. rt/simple-streams-test.lisp: o Add a couple of tests exercising %read-chars-fn. These pass. o Add a test for writing strings with surrogates. (Not yet implemented.)
-
rtoy authored
o Comment out %char-to-octets and ef-obs-co-fn, which aren't used anymore. (Remove this soon.) impl.lisp: o Fix %file-string-length, based on the equivalent code for fd-streams.
-
rtoy authored
support. Add new functions def-ef-macro functions that do the dirty work and use them in the stream functions. We leave the old versions around for now, but they should be removed. %octets-to-char is no longer used.
-
- Jun 21, 2009
- Jun 19, 2009
-
-
rtoy authored
the new value against the declared slot type. This shows up in simple-streams because the slot type stream:j-listen-fn is a hairy function type spec. So, try to simplify the slot type before checking. This is a slightly modified idea from Paul Foley.
-
- Jun 11, 2009
-
-
rtoy authored
unicode-utf16-extfmt-2009-06-11.
-
- Jan 21, 2009
-
-
rtoy authored
-
- Jan 06, 2009
-
-
rtoy authored
slots.lisp to get rid of an undefined variable warning in slots.lisp.
-
- Dec 07, 2008
-
-
rtoy authored
*USE-SLOT-TYPES-P* when checking the new value.
-
- Dec 02, 2008
- Nov 12, 2008
-
-
rtoy authored
check for that. (This happens if you do a checkout with the -kk flag, which causes keywords not to be expanded.)
-
- Jun 19, 2008
-
-
rtoy authored
bootfiles/19e/boot-2008-06-1.lisp: o Use this bootfile to compile the change in external-format structure. Just needed to get rid of a restart when compiling pcl. code/exports.lisp: o Renames ENCODE-STRING to STRING-ENCODE. Similarly for DECODE-STRING. code/extfmts.lisp: pcl/simple-streams/impl.lisp: pcl/simple-streams/strategy.lisp: pcl/simple-streams/external-formats/iso8859-1.lisp: pcl/simple-streams/external-formats/utf-8.lisp: pcl/simple-streams/external-formats/void.lisp: o Updated for new external format. I think the main change is not having to do a funcall for each character. pcl/simple-streams/external-formats/aliases o New file describing different names for external formats. pcl/simple-streams/external-formats/crlf.lisp: o New file for composing external format for CR/LF pcl/simple-streams/external-formats/utf-16-be.lisp: pcl/simple-streams/external-formats/utf-16-le.lisp: o New files supporting UTF-16 BE and LE formats. tools/make-main-dist.sh: o Copy over the new files and the aliases file too.
-
- May 24, 2008
-
-
rtoy authored
get-accessor-method-function. See cmucl-imp, 2008/04/03, PCL bug?. Bug and link to solution provided by Hans Hubner. Solution based on sbcl patch 0.8.14.27. Here's the test case: (in-package :cl-user) (use-package :pcl) (defclass test-metaclass (standard-class) ()) (defmethod validate-superclass ((sub test-metaclass) (super standard-class)) t) (defmethod (setf slot-value-using-class) :before (newval (class test-metaclass) object slotd) (print 'setf-slot-value-using-class-before)) (defmethod (setf slot-value-using-class) :after (newval (class test-metaclass) object slotd) (print 'setf-slot-value-using-class-after)) (defclass test-class () (slot) (:metaclass test-metaclass))
-
- Mar 25, 2008
-
-
rtoy authored
http://article.gmane.org/gmane.lisp.cmucl.devel/10471. These changes make the compiler and interpreter behave the same, and, as a side-effect, makes Nicolas's code work as he wants. pcl/slots.lisp: o Add LEGAL-SLOT-NAME-P-INTERNAL that returns two values. If the slot-name is legal, return T. If illegal, return NIL and a string indicating why. o Use this new function in the compiler macros for SLOT-VALUE, (SETF SLOT-VALUE) and SLOT-BOUNDP so that we use the fast ACCESSOR-* versions only when we know the slot-name is legal. Otherwise, the compiler macros give up. pcl/methods.lisp: o Change the method LEGAL-SLOT-NAME-P to use LEGAL-SLOT-NAME-P-INTERNAL. o Update the call to LEGAL-SLOT-NAME-P in SHARED-INITIALIZE since LEGAL-SLOT-NAME-P returns 2 values now.
-
- Nov 05, 2007
-
-
rtoy authored
simple-streams buffers) into LISP and removes them from simple-streams (and from EXT). Use boot-2007-11-1.lisp to bootstrap the necessary symbol changes. Patch from Paul Foley.
-
- Oct 25, 2007
-
-
rtoy authored
New files: o code/extfmts.lisp o pcl/simple-streams/external-formats/iso8859-1.lisp o pcl/simple-streams/external-formats/void.lisp code/exports.lisp: o Export the new symbols STRING-TO-OCTETS, OCTETS-TO-STRING, *DEFAULT-EXTERNAL-FORMAT*, ENCODE-STRING, and DECODE-STRING from the STREAM package o Make the symbols in the EXT package too. pcl/simple-streams/internal.lisp: o Move the implementation of STRING-TO-OCTETS and friends to a new file (extfmts.lisp). pcl/simple-streams/external-formats/utf-8.lisp: o New implementation. tools/make-main-dist.sh: o Create new target directory to hold external formats o Copy all of the external formats to the new directory. tools/pclcom.lisp: o Compile new code tools/worldcom.lisp: o Compile code/extfmts.lisp tools/worldload.lisp: o Load code/extfmts.lisp
-
- Oct 08, 2007
-
-
rtoy authored
uses EQUAL hash-tables now to keep track of labels/flets. Basically moved the implementation of sxhash-instance from pcl/low.lisp to hash-new.lisp.
-
- Sep 13, 2007
-
-
rtoy authored
-
rtoy authored
retracing flet/labels functions. This was caused by the hash-table in *TRACE-FUNCTIONS* using an EQ test. This doesn't work well when the functions are lists like (FLET INNER OUTER). code/ntrace.lisp: o Change *TRACED-FUNCTIONS* to use an EQUAL table so lists can match. pcl/braid.lisp: o Move LISP::SXHASH-INSTANCE to low.lisp because we need it defined earlier because of the change to tracing. Can't build PCL without this change. pcl/low.lisp: o LISP::SXHASH-INSTANCE moved here.
-
- May 02, 2007
-
-
rtoy authored
shared-initialize were not getting :default-initargs. Patch from Madhu, Mar 28, 2007, based on fix in sbcl. pcl/ctor.lisp: o Pass default-initargs to initialize-instance and shared-initialize. pcl/rt/ctor.lisp: o Add test for this case pcl/rt/system.lisp: o Use *load-truename* to setup paths, instead of a hard-wired one.
-
- Feb 21, 2007
-
-
rtoy authored
-
- Dec 21, 2006
-
-
rtoy authored
(defvar $f (open "/etc/passwd" :mapped t :class 'stream:file-simple-stream)) (file-position $f) returns a negative value. I think this happens because of some possible confusion between buffer-ptr and buf-len in a mapped file-simple-stream. I changed the code so that buffer-ptr is initialized to 0, and the various routines that check for eof compare buffpos against buf-len, instead of buffer-ptr. I think this also means buffer-ptr is not used in mapped file-simple-streams. Add a couple of file-position tests too.
-
- Nov 30, 2006
-
-
rtoy authored
fixes a bug in compiling recent McCLIM versions.
-
- Oct 30, 2006
-
-
rtoy authored
correctly. (Patch taken from SBCL.)
-
- Dec 01, 2005
-
-
rtoy authored
symbol that is not the name of a structure. (This was breaking DESCRIBE on a symbol.)
-