X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=seqs.lisp;h=8ef74673c0c54c4d67fd14f57c2952675e1f0e70;hb=12026eac09e773e83887a6073d5a034979ce7043;hp=302f5d5d04c62448af26475837bf7583f752350d;hpb=d11d6cc43fd9227a8aeed28dc2cfecdbc587ec4a;p=kmrcl.git diff --git a/seqs.lisp b/seqs.lisp index 302f5d5..8ef7467 100644 --- a/seqs.lisp +++ b/seqs.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; KMRCL users are granted the rights to distribute and use this software @@ -16,13 +14,13 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(in-package :kmrcl) +(in-package #:kmrcl) (defun nsubseq (sequence start &optional end) "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))