Changeset 14354


Ignore:
Timestamp:
01/14/13 10:01:01 (10 years ago)
Author:
Mark Evenson
Message:

Backport r14352 | vvoutilainen | 2013-01-13 21:05:50 +0100 (Sun, 13 Jan 2013) | 1 line.

Fix ticket 290, a compilation error of a quoted list.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.1.x/src/org/armedbear/lisp/dump-form.lisp

    r14176 r14354  
    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.