Skip to content

Commit

Permalink
wrong element access. Corrected by Marco A.
Browse files Browse the repository at this point in the history
Signed-off-by: AJ Rossini <blindglobe@gmail.com>
  • Loading branch information
blindglobe committed Apr 9, 2014
1 parent 7f3b7b8 commit da37c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data-frame.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ A 'strand' is a 'named colum' in R."


(defmethod ref$ ((s sequence) (ref fixnum) &rest refs)
(let ((e (nth ref s)))
(let ((e (elt s ref)))
(if refs
(apply #'ref$ e refs)
e)))
Expand Down

0 comments on commit da37c3b

Please sign in to comment.