From 2852db0a73fa9a12445d29023bb280d12f8869aa Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Wed, 23 Dec 2009 14:36:53 +0100 Subject: [PATCH] ensure proper referencing. Signed-off-by: AJ Rossini --- src/data/data-xls-compat.lisp | 6 +++--- src/data/dataframe.lisp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/data/data-xls-compat.lisp b/src/data/data-xls-compat.lisp index 5d764b3..b44436b 100644 --- a/src/data/data-xls-compat.lisp +++ b/src/data/data-xls-compat.lisp @@ -1,6 +1,6 @@ ;;; -*- mode: lisp -*- -;;; Time-stamp: <2009-12-21 12:46:46 tony> +;;; Time-stamp: <2009-12-23 14:18:47 tony> ;;; Creation: <2009-03-12 17:14:56 tony> ;;; File: template.lisp ;;; Author: AJ Rossini @@ -104,9 +104,9 @@ Read in data file from the System DATA library." (defun load-example (file) "Args: (file) as string Read in lisp example file from the System EXAMPLES library." - (if (load (path-string-to-path *cls-examples-dir* file)) + (if (load (path-string-to-path cls-config:*cls-examples-dir* file)) t - (load (path-string-to-path *cls-examples-dir* file)))) + (load (path-string-to-path cls-config:*cls-examples-dir* file)))) ;;; ;;; Saving Variables and Functions diff --git a/src/data/dataframe.lisp b/src/data/dataframe.lisp index dbd5142..20bf14a 100644 --- a/src/data/dataframe.lisp +++ b/src/data/dataframe.lisp @@ -1,6 +1,6 @@ ;;; -*- mode: lisp -*- -;;; Time-stamp: <2009-12-21 12:57:29 tony> +;;; Time-stamp: <2009-12-23 08:46:35 tony> ;;; Creation: <2008-03-12 17:18:42 blindglobe@gmail.com> ;;; File: dataframe.lisp ;;; Author: AJ Rossini @@ -432,8 +432,8 @@ from a ROW-MAJOR list-of-lists representation. A COLUMN-MAJOR representation should be handled using the transpose-listoflists function." (check-type lol list) ; imperfect -- must verify all list elements are also lists. - (if (sublists-of-same-size-p lol) - (make-dataframe (listoflist->array lol)) + (if (listoflist:sublists-of-same-size-p lol) + (make-dataframe (listoflist:listoflist->array lol)) (error "make-data-set-from-lists: no combining different length lists")) (error "make-data-set-from-lists: proposed name exists")) -- 2.11.4.GIT