diff options
Diffstat (limited to 'deque.lisp')
-rw-r--r-- | deque.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ ;;; deque data type for Lisp ;;; ;;; Copyright 2012 Kaz Kylheku <kaz@kylheku.com> -;;; +;;; ;;; With the help of the pop-deque macro below, you can represent ;;; a deque using two Lisp lists. Use one list for the ;;; front end of the deque and another list for the back. @@ -19,7 +19,7 @@ ;;; (or F B) gives us a test whether the dequeue is not empty. ;;; ;;; (+ (length F) (length B)) gives us the length. -;;; +;;; ;;; (eval-when (:compile-toplevel :load-toplevel :execute) |