Skip to content

Commit

Permalink
The code is done.
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysz00 committed Jan 2, 2012
1 parent c4edea3 commit 5136c46
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dlist.asd
Expand Up @@ -6,7 +6,6 @@
:author "Krzyszxtof Drewniak <krzysdrewniak@gmail.com>"
:license "3-Clause BSD"
:description "An implementation of the doubly-linked list in Common Lisp."
:depends-on (:iterate)
:in-order-to ((test-op (test-op #:dlist-test)))
:serial t
:components ((:file "package")
Expand All @@ -15,7 +14,8 @@
(:file "modification")
(:file "mapping")
(:file "more-ops")
(:file "generic-sequences")))
(:file "generic-sequences")
(:file "iterate")))

(defsystem #:dlist-test
:depends-on (:dlist :lisp-unit)
Expand Down
2 changes: 1 addition & 1 deletion dlist.lisp
Expand Up @@ -3,7 +3,7 @@
(defclass dlist (#+generic-sequences sequence standard-object)
((first :initarg :first :accessor %dlist-first)
(last :initarg :last :accessor %dlist-last))
(:documentation "A class that represents a doubly-linked list"))
(:documentation "A class that represents a doubly-linked list"))

(defun dlist-first (dlist)
"Gets the first `dcons' in a `dlist'"
Expand Down
2 changes: 2 additions & 0 deletions package.lisp
Expand Up @@ -27,6 +27,8 @@
#:dodlist
#:dodcons
#:copy-dlist
#:in-dlist
#:on-dlist
))

(eval-when (:compile-toplevel :load-toplevel :execute)
Expand Down

0 comments on commit 5136c46

Please sign in to comment.