Fixed typo
authorespen <espen>
Thu, 13 Nov 2008 22:05:28 +0000 (22:05 +0000)
committerespen <espen>
Thu, 13 Nov 2008 22:05:28 +0000 (22:05 +0000)
tools/config.lisp

index d7f161e..472d02a 100644 (file)
       ;; We use . and - as delimiters because some Linux
       ;; distributions tend to patch SBCL and add a distro-specific
       ;; version tag (like 1.0.19-gentoo).
-      for part in (split-string (lisp-implementation-version) :delimiter '(#\.\
- #\-))
+      for part in (split-string (lisp-implementation-version) :delimiter '(#\. #\-))
       while (every #'digit-char-p part)
       collect (parse-integer part))))
   (defun sbcl>= (major minor micro &optional patch)