diff --git a/interface.lisp b/interface.lisp
index 6f3adb434f0b81bed62a5d4f8a9372b1f6dedba4..79777d10e410ac0b9bed6cb921d99a5ada7de036 100644
--- a/interface.lisp
+++ b/interface.lisp
@@ -3,7 +3,7 @@
 ; description: Macros to interface GSL functions.
 ; date:        Mon Mar  6 2006 - 22:35                   
 ; author:      Liam M. Healy
-; modified:    Sun Apr 16 2006 - 13:03
+; modified:    Wed Apr 19 2006 - 17:06
 ;********************************************************
 
 (in-package :gsl)
@@ -126,12 +126,25 @@ and a scaling exponent e10, such that the value is val*10^e10."
 (defun rst-arrayp (decl)
   (listp (rst-type decl)))
 
+(defun rst-array-pointer-last-p (decl)
+  (listp (rst-type decl)))
+
 (defun rst-eltype (decl)
   (first (rst-type decl)))
 
 (defun rst-dim (decl)
   (second (rst-type decl)))
 
+(defun rst-pointer-last-p (decl)
+  (third (rst-type decl)))
+
+(defun return-symbol-type (return)
+  "Make a full declaration from the list of return values."
+  (mapcar (lambda (typ)
+	    (list (gensym "RET")
+		  typ))
+	  return))
+
 (defparameter *make-sequence-type* 'list
   "Whether sequences should be returned as list or vector.")
 
@@ -188,56 +201,40 @@ and a scaling exponent e10, such that the value is val*10^e10."
        (rest wrappers))
       form))
 
-(defun wfa-wrapper (spec)
-  "Returns two values: the foreign-funcall argument declaration
-   and what to wrap around the form, if anything."
-  (if (rst-arrayp spec)
-      (let ((arr (gensym "ARR"))
-	    (len (if (eq (rst-dim spec) '*)
-		     (gensym "LEN")
-		     (rst-dim spec))))
-	(values
-	 `(:pointer ,arr :size ,len)
-	 `((cffi::with-foreign-array
-	       (,arr ,(rst-symbol spec) ,(rst-eltype spec) (list ,len)))
-	   (let ((,len (length ,(rst-symbol spec))))))))
-      (values
-       `(,(rst-type spec)
-	 ,(wrap-arg spec)) nil)))
-
-(defun wfa-wrappers (specs)
-  (if specs
-      (multiple-value-bind (decl wrap)
-	  (wfa-wrapper (first specs))
-	(multiple-value-bind (decls wraps)
-	    (wfa-wrappers (rest specs))
-	  (values (append decl decls) (append wrap wraps))))
-      (values nil nil)))
-
-#+example
-(multiple-value-bind (decl wrap)
-    (wfa-wrappers
-     '((foo :double) (coefficients (:double *)) (n :int) (boo (:double *))))
-  (apply #'wrap-form `(the-body ,@decl) wrap))
-
-#+example
-(LET ((#:LEN4183 (LENGTH BOO)))
-  (CFFI::WITH-FOREIGN-ARRAY (#:ARR4182 BOO :DOUBLE (LIST #:LEN4183))
-    (LET ((#:LEN4181 (LENGTH COEFFICIENTS)))
-      (CFFI::WITH-FOREIGN-ARRAY
-	  (#:ARR4180 COEFFICIENTS :DOUBLE (LIST #:LEN4181))
-	(THE-BODY :DOUBLE
-		  FOO
-		  :POINTER
-		  #:ARR4180
-		  :SIZE
-		  #:LEN4181
-		  :INT
-		  N
-		  :POINTER
-		  #:ARR4182
-		  :SIZE
-		  #:LEN4183)))))
+;;; All arrays and vectors are pass with a gsl-data object that is made
+;;; outside the function, and pieces are spliced in the function call.
+;;; Both raw arrays and GSL structures are be passed as gsl-data objects,
+;;; but their declarations are be different:
+;;;   Raw array (xyz (:double *))
+;;;   GSL struct: (xyz gsl-vector-c)
+;;; They are expanded in the foreign-funcall argument list differently:
+;;;   Raw array to two arguments (:POINTER (gsl-array xyz) :SIZE (storage-size xyz))
+;;;   GSL struct to one: (:pointer (pointer xyz))
+
+;;; (splice-arguments '((argraw (:double *)) (argstruct gsl-vector-c) (x :double)))
+(defun splice-arguments (arguments &optional mode)
+  "Convert the argument declarations to a list of declarations appropriate
+   for foreign-funcall.  If mode is T, a mode argument will be added to the end,
+   if it is an integer, it will be put at that position."
+  (flet ((splicearg (spec)
+	   ;; No accomodation for matrices (two indices) yet
+	   (if (rst-arrayp spec)
+	       (values
+		(if (rst-pointer-last-p spec)
+		    `(:size (first (storage-size ,(rst-symbol spec)))
+		      :pointer (gsl-array ,(rst-symbol spec)))
+		    `(:pointer (gsl-array ,(rst-symbol spec))
+		      :size (first (storage-size ,(rst-symbol spec))))))
+	       (values
+		`(,(rst-type spec)
+		  ,(wrap-arg spec))))))
+    (mapcan #'splicearg
+	    (if mode
+		(let ((mode (if (integerp mode) mode (length arguments))))
+		  (append (subseq arguments 0 mode)
+			  '((mode sf-mode))
+			  (subseq arguments mode)))
+		arguments))))
 
 ;;;;****************************************************************************
 ;;;; Checking results
@@ -278,14 +275,15 @@ and a scaling exponent e10, such that the value is val*10^e10."
 ;;; Warning isn't quite right for lambdas.
 (defmacro defun-gsl
     (cl-name arguments gsl-name
-     &key documentation return mode (c-return-value :error-code)
-     check-null-pointers method after)
+	     &key documentation return mode (c-return-value :error-code)
+	     return-input check-null-pointers method after)
   "Define a CL function that provides an interface to a GSL function.
    If cl-name is :lambda, make a lambda.  Arguments:
      arguments:       a list of input arguments (symbol type) to the GSL function
      gsl-name:        the C function name, as a string
      documentation:   a string
      return:          a list of return types
+     return-input:    input variables to return
      mode:            T or NIL, depending on whether gsl_mode is an argument
      c-return-value:  The C function returns an :error-code, :number-of-answers,
                       a value to :return from the CL function, :success-failure 
@@ -299,59 +297,49 @@ and a scaling exponent e10, such that the value is val*10^e10."
      after            Functions to call after the GSL function has been called;
                       result is discarded."
   (let ((clargs (or method (mapcar #'rst-symbol arguments)))
-	(return-symb-type
-	 (unless (eq c-return-value :return)
-	   (mapcar (lambda (typ)
-		     (list (gensym "RET")
-			   typ))
-		   return))))
-    (multiple-value-bind (input-declarations wrap-arrays)
-	(wfa-wrappers arguments)
-      `(,@(if (eq cl-name :lambda)
-	      '(lambda)
-	      `(,(if method 'defmethod-map 'defunx-map) ,cl-name ,gsl-name))
-	,(if mode 
-	     `(,@clargs &optional (mode :double-prec))
-	     `(,@clargs))
-	,@(when documentation (list documentation))
-	,(wrap-form			; with-foreign-array
-	  (wrap-form 			; with-foreign-object
-	   `(let ((creturn
-		   (cffi:foreign-funcall
-		    ,gsl-name
-		    ,@input-declarations
-		    ,@(when mode '(sf-mode mode))
-		    ,@(mapcan (lambda (r) `(:pointer ,(rst-symbol r)))
-			      return-symb-type)
-		    ,(case c-return-value
-			   (:return (first return))
-			   (:void :void)
-			   (t :int)))))
-	     ,@(case c-return-value
-		     (:void '((declare (ignore creturn))))
-		     (:error-code
-		      (if method
-			  `((check-gsl-status creturn `(,',cl-name))) ; need args
-			  `((check-gsl-status creturn `(,',cl-name ,,@clargs))))))
-	     ,@(check-null-pointers check-null-pointers)
-	     ,@after
-	     (values
-	      ,@(case c-return-value
-		      (:number-of-answers
-		       (mapcan
-			(lambda (decl seq)
-			  `((when (> creturn ,seq) ,@(pick-result decl))))
-			return-symb-type
-			(loop for i below (length return) collect i)))
-		      (:success-failure
-		       '((success-failure creturn)))
-		      (:return (list (wrap-arg `(creturn ,@return))))
-		      (t
-		       (mapcan #'pick-result return-symb-type)))))
-	   (when return-symb-type
-	     `((cffi:with-foreign-objects
-		   ,(mapcar #'wfo-declare return-symb-type)))))
-	  wrap-arrays)))))
-
-;;; arguments: list like ((x :double) (y :double))
-;;; mode: t or nil
+	(return-symb-type 
+	 (unless (or (eq c-return-value :return) return-input)
+	   (return-symbol-type return))))
+    `(,@(if (eq cl-name :lambda)
+	    '(lambda)
+	    `(,(if method 'defmethod-map 'defunx-map) ,cl-name ,gsl-name))
+      ,(if mode 
+	   `(,@clargs &optional (mode :double-prec))
+	   `(,@clargs))
+      ,@(when documentation (list documentation))
+      ,(wrap-form 			; with-foreign-object
+	`(let ((creturn
+		(cffi:foreign-funcall
+		 ,gsl-name
+		 ,@(splice-arguments arguments mode)
+		 ,@(mapcan (lambda (r) `(:pointer ,(rst-symbol r)))
+			   return-symb-type)
+		 ,(case c-return-value
+			(:return (first return))
+			(:void :void)
+			(t :int)))))
+	  ,@(case c-return-value
+		  (:void '((declare (ignore creturn))))
+		  (:error-code
+		   (if method
+		       `((check-gsl-status creturn `(,',cl-name))) ; need args
+		       `((check-gsl-status creturn `(,',cl-name ,,@clargs))))))
+	  ,@(check-null-pointers check-null-pointers)
+	  ,@after
+	  (values
+	   ,@return-input
+	   ,@(case c-return-value
+		   (:number-of-answers
+		    (mapcan
+		     (lambda (decl seq)
+		       `((when (> creturn ,seq) ,@(pick-result decl))))
+		     return-symb-type
+		     (loop for i below (length return) collect i)))
+		   (:success-failure
+		    '((success-failure creturn)))
+		   (:return (list (wrap-arg `(creturn ,@return))))
+		   (t
+		    (mapcan #'pick-result return-symb-type)))))
+	(when return-symb-type
+	  `((cffi:with-foreign-objects
+		,(mapcar #'wfo-declare return-symb-type))))))))
diff --git a/polynomial.lisp b/polynomial.lisp
index 8ff5d9e0f85aaf9b7e3e775edce810cdfc398676..9a12ba68ead9847004044c8af51048fb4522fcab 100644
--- a/polynomial.lisp
+++ b/polynomial.lisp
@@ -3,7 +3,7 @@
 ; description: Polynomials                               
 ; date:        Tue Mar 21 2006 - 18:33                   
 ; author:      Liam M. Healy                             
-; modified:    Sat Mar 25 2006 - 22:36
+; modified:    Wed Apr 19 2006 - 09:41
 ;********************************************************
 ;;; $Id: $
 
@@ -16,9 +16,11 @@
 ;;;; Polynomial Evaluation
 ;;;;****************************************************************************
 
-;;; (polynomial-eval #(1.0d0 2.0d0 3.0d0) -1.0d0)
-(defun-gsl polynomial-eval 
-    ((coefficients (:double *)) (x :double))
+;;; (defparameter vec (make-data 'vector nil 3))
+;;; (setf (data vec) #(1.0d0 2.0d0 3.0d0))
+;;; (polynomial-eval vec -1.0d0)
+;;; 2.0d0
+(defun-gsl polynomial-eval ((coefficients (:double *)) (x :double))
   "gsl_poly_eval"
   :documentation
   "Evaluate the polyonomial with coefficients at the point x."
diff --git a/sorting.lisp b/sorting.lisp
index 4ec94985682618db0fc54cc7be3c15f31df0220c..7bce331eb092de83e3b825bad65b80441172fcf7 100644
--- a/sorting.lisp
+++ b/sorting.lisp
@@ -3,15 +3,15 @@
 ; description: Sorting                                   
 ; date:        Fri Apr 14 2006 - 20:20                   
 ; author:      Liam M. Healy                             
-; modified:    Fri Apr 14 2006 - 21:58
+; modified:    Wed Apr 19 2006 - 17:43
 ;********************************************************
 ;;; $Id: $
 
 (in-package :gsl)
 
 ;;; #'heapsort has just a cursory port, use CL's #'sort.
-;;; Raw C array functions not ported.
-;;; gsl_sort_vector_smallest, gsl_sort_vector_largest
+;;; Raw C array functions not ported, there is no point.
+;;; Need vectors over integers for
 ;;; gsl_sort_smallest_index, gsl_sort_largest_index
 ;;; need to return converted raw C arrays.
 
@@ -74,17 +74,21 @@ place.  The first element of @var{p} gives the index of the least element
 in @var{v}, and the last element of @var{p} gives the index of the
 greatest element in @var{v}.  The vector @var{v} is not changed.")
 
-;;; Need to allocate the C vector of doubles with the desired length
-;;; and convert back to CL and return that.
-#+development
-(defun-gsl sort-vector-smallest (k (vector gsl-vector-c))
+(defun-gsl sort-vector-smallest ((dest (:double *)) (v gsl-vector-c))
   "gsl_sort_vector_smallest"
   :documentation
-  "Find the @var{k} smallest elements of the
-  vector @var{v}. @var{k} must be less than or equal
-  to the length of the vector @var{v}."
+  "Find the smallest elements of the vector @var{v} and put them into dest,
+   which must be shorter than v."
   :c-return-value :void
-  :return ((dest (:double k))))
+  :return-input (dest))
+
+(defun-gsl sort-vector-largest ((dest (:double *)) (v gsl-vector-c))
+  "gsl_sort_vector_largest"
+  :documentation
+  "Find the largest elements of the vector @var{v} and put them into dest,
+   which must be shorter than v."
+  :c-return-value :void
+  :return-input (dest))
 
 ;;;;****************************************************************************
 ;;;; Examples
@@ -104,4 +108,11 @@ greatest element in @var{v}.  The vector @var{v} is not changed.")
     (data perm)))
 #(3 1 4 0 2)
 
+(defparameter vec (make-data 'vector nil 5))
+(setf (data vec) #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))
+(defparameter smallest (make-data 'vector nil 3))
+(sort-vector-smallest smallest vec)
+(free vec)
+(free smallest)
+
 |#
diff --git a/special-functions/bessel.lisp b/special-functions/bessel.lisp
index 3cd66fd2236f086d21fa029731a2b150eb4eda9c..95da6ec84ccd13218589be9d32a3410d6eaf563e 100644
--- a/special-functions/bessel.lisp
+++ b/special-functions/bessel.lisp
@@ -3,7 +3,7 @@
 ; description: Bessel functions                          
 ; date:        Fri Mar 17 2006 - 18:42                   
 ; author:      Liam M. Healy
-; modified:    Sat Mar 25 2006 - 22:11
+; modified:    Wed Apr 19 2006 - 17:06
 ;********************************************************
 
 (in-package :gsl)
@@ -322,8 +322,9 @@
   :return (sf-result))
 
 ;;; (double @var{nu}, gsl_mode_t @var{mode}, size_t @var{size}, double @var{v}[])
-#+development
-(defun-gsl bessel-sequence-Jnu ((nu :double) (v :pointer))
+;;; The mode argument comes before v, need to make that an option on
+;;; the :mode argument to defun-gsl.  Need to return v as well.
+(defun-gsl bessel-sequence-Jnu ((nu :double) (v (:double * t)))
   "gsl_sf_bessel_sequence_Jnu_e"
   :documentation
   "The regular cylindrical Bessel function of
@@ -331,36 +332,8 @@ fractional order @math{\nu}, @math{J_\nu(x)}, evaluated at a series of
 @math{x} values.  The array @var{v} of length @var{size} contains the
 @math{x} values.  They are assumed to be strictly ordered and positive.
 The array is over-written with the values of @math{J_\nu(x_i)}."
-  :mode t
-  :return (v :pointer))
-
-#+development
-(DEFUNX BESSEL-SEQUENCE-JNU
-    (NU V &OPTIONAL (MODE :DOUBLE-PREC))
-  "The regular cylindrical Bessel function of
-fractional order @math{nu}, @math{J_nu(x)}, evaluated at a series of
-@math{x} values.  The array @var{v} of length @var{size} contains the
-@math{x} values.  They are assumed to be strictly ordered and positive.
-The array is over-written with the values of @math{J_nu(x_i)}."
-  (LET ((STATUS
-	 (FOREIGN-FUNCALL
-	  "gsl_sf_bessel_sequence_Jnu_e"
-	  :DOUBLE NU
-	  SF-MODE MODE
-	  :POINTER V
-	  :INT)))
-    (UNLESS
-	(EQL :SUCCESS
-	     (FOREIGN-ENUM-KEYWORD 'GSL-ERRORNO
-				   STATUS))
-      (WARN 'GSL-WARNING
-	    :GSL-ERRNO
-	    STATUS
-	    :GSL-CONTEXT
-	    `(BESSEL-SEQUENCE-JNU ,NU ,V)))
-    (VALUES
-     (pick-result '((v (double (length v))))))))
-
+  :return-input (v)
+  :mode 1)
 
 ;;;;****************************************************************************
 ;;;; Irregular Bessel Function - Fractional Order