Improve date/time display
[kmrcl.git] / seqs.lisp
index 2e261bd1ac30859c39284fa73a92d5ce36ed5333..4cc4659e9ba7abff3f7c3a4168ff31e407eba790 100644 (file)
--- a/seqs.lisp
+++ b/seqs.lisp
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: seqs.lisp,v 1.4 2003/05/06 01:43:14 kevin Exp $
+;;;; $Id$
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -23,6 +23,6 @@
   "Return a subsequence by pointing to location in original sequence"
   (unless end (setq end (length sequence)))
   (make-array (- end start)
-             :element-type (array-element-type sequence)
-             :displaced-to sequence
-             :displaced-index-offset start))
+              :element-type (array-element-type sequence)
+              :displaced-to sequence
+              :displaced-index-offset start))