From 24574c15a99a1302ad0b41edd21cc89da96275e0 Mon Sep 17 00:00:00 2001
From: "Liam M. Healy" <lnp@healy.washington.dc.us>
Date: Mon, 26 Apr 2010 09:57:32 -0400
Subject: [PATCH] Add documentation strings for the GSL 1.12 additions to
 Chebyshev

---
 chebyshev.lisp | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/chebyshev.lisp b/chebyshev.lisp
index 111d4dc0..e55be8c7 100644
--- a/chebyshev.lisp
+++ b/chebyshev.lisp
@@ -1,6 +1,6 @@
 ;; Chebyshev Approximations
 ;; Liam Healy Sat Nov 17 2007 - 20:36
-;; Time-stamp: <2010-04-25 21:28:20EDT chebyshev.lisp>
+;; Time-stamp: <2010-04-26 09:48:32EDT chebyshev.lisp>
 ;;
 ;; Copyright 2007, 2008, 2009 Liam M. Healy
 ;; Distributed under the terms of the GNU General Public License
@@ -42,6 +42,7 @@
   "gsl_cheb_order"
   (((mpointer object) :pointer))
   :definition :method
+  :documentation "The order of Chebyshev series."
   :c-return sizet
   :gsl-version (1 12))
 
@@ -49,6 +50,7 @@
   "gsl_cheb_size"
   (((mpointer chebyshev) :pointer))
   :definition :method
+  :documentation "The length of the Chebyshev coefficient array."
   :c-return sizet
   :gsl-version (1 12))
 
@@ -56,6 +58,8 @@
   "gsl_cheb_coeffs"
   (((mpointer chebyshev) :pointer))
   :c-return (crtn :pointer)
+  :documentation
+  "The Chebyshev coefficient array as a CL array (foreign-friendly)."
   :return ((c-array:copy-foreign-vector crtn (size chebyshev)))
   :gsl-version (1 12))
 
-- 
GitLab