Changeset 14352


Ignore:
Timestamp:
01/13/13 20:05:50 (11 years ago)
Author:
vvoutilainen
Message:

Fix ticket 290, a compilation error of a quoted list

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/dump-form.lisp

    r14176 r14352  
    126126(declaim (ftype (function (cons stream) t) dump-cons))
    127127(defun dump-cons (object stream)
    128   (cond ((and (eq (car object) 'QUOTE) (= (length object) 2))
     128  (cond ((and (eq (car object) 'QUOTE) (proper-list-of-length-p object 2))
    129129         (%stream-write-char #\' stream)
    130130         (dump-object (%cadr object) stream))
Note: See TracChangeset for help on using the changeset viewer.