From f23f16afcda15531e6442837e13198834894d757 Mon Sep 17 00:00:00 2001
From: Liam Healy <liam@thinkpad.local>
Date: Mon, 23 Feb 2009 09:51:25 -0500
Subject: [PATCH] Fix misnamed symbol

New symbol name +step-rk8pd+ missed in one spot.
---
 ordinary-differential-equations/ode-system.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ordinary-differential-equations/ode-system.lisp b/ordinary-differential-equations/ode-system.lisp
index 4d1f005d..62caf586 100644
--- a/ordinary-differential-equations/ode-system.lisp
+++ b/ordinary-differential-equations/ode-system.lisp
@@ -1,6 +1,6 @@
 ;; ODE system setup
 ;; Liam Healy, Sun Apr 15 2007 - 14:19
-;; Time-stamp: <2009-02-15 09:09:55EST ode-system.lisp>
+;; Time-stamp: <2009-02-23 09:35:27EST ode-system.lisp>
 ;; $Id$
 
 (in-package :gsl)
@@ -17,7 +17,7 @@
 
 (defmacro with-ode-integration
     ((function time step-size max-time
-	       dependent dimensions &optional (stepper '*step-rk8pd*)
+	       dependent dimensions &optional (stepper '+step-rk8pd+)
 	       (absolute-error 1.0d-6) (relative-error 0.0d0))
      &body body)
   "Environment for integration of ordinary differential equations."
-- 
GitLab