Changeset 10992
- Timestamp:
- 02/15/06 11:51:28 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/dump-form.lisp
r9850 r10992 1 1 ;;; dump-form.lisp 2 2 ;;; 3 ;;; Copyright (C) 2004-200 5Peter Graves4 ;;; $Id: dump-form.lisp,v 1. 4 2005-08-13 17:34:25piso Exp $3 ;;; Copyright (C) 2004-2006 Peter Graves 4 ;;; $Id: dump-form.lisp,v 1.5 2006-02-15 11:51:28 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 24 24 (declaim (ftype (function (cons stream) t) dump-cons)) 25 25 (defun dump-cons (object stream) 26 (cond ((and (eq (car object) 'QUOTE) ( null (cddr object)))26 (cond ((and (eq (car object) 'QUOTE) (= (length object) 2)) 27 27 (%stream-write-char #\' stream) 28 28 (dump-object (%cadr object) stream))
Note: See TracChangeset
for help on using the changeset viewer.