From 8fd1f417b9ff3fbca6a6f09878e689d9e90d5654 Mon Sep 17 00:00:00 2001 Message-Id: <8fd1f417b9ff3fbca6a6f09878e689d9e90d5654.1716522136.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 20 Mar 2008 15:44:01 +0000 Subject: [PATCH] Fixed broken URL Organization: Straylight/Edgeware From: espen --- gtk/gtk.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtk.lisp b/gtk/gtk.lisp index 69315a9..787a427 100644 --- a/gtk/gtk.lisp +++ b/gtk/gtk.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gtk.lisp,v 1.90 2008/02/29 18:34:19 espen Exp $ +;; $Id: gtk.lisp,v 1.91 2008/03/20 15:44:01 espen Exp $ (in-package "GTK") @@ -108,7 +108,7 @@ (defun %init-async-event-handling (display) (when (and (find-package "SWANK") (not (eq (symbol-value (find-symbol "*COMMUNICATION-STYLE*" "SWANK")) style))) - (error "When running clg in Slime, the communication style ~S must be used in combination with asynchronous event handling on this platform. See the README file and for more information." style))) + (error "When running clg in Slime, the communication style ~S must be used in combination with asynchronous event handling on this platform. See the README file and for more information." style))) #?(or (featurep :cmu) (sbcl< 1 0 6) (sbcl>= 1 0 15 6)) (progn -- [mdw]