Support code limit for gen-character
authorAttila Lendvai <attila.lendvai@gmail.com>
Thu, 31 Aug 2006 16:13:25 +0000 (18:13 +0200)
committerattila.lendvai <attila.lendvai@gmail.com>
Thu, 31 Aug 2006 16:13:25 +0000 (18:13 +0200)
src/random.lisp

index ba0abf8..f91ca46 100644 (file)
@@ -191,7 +191,8 @@ BOUND)."
           (- (random (min (- most-negative) bound)))))
        type))))
 
-(defun gen-character (&key (code (gen-integer :min 0 :max (1- char-code-limit)))
+(defun gen-character (&key (code-limit char-code-limit)
+                           (code (gen-integer :min 0 :max (1- code-limit)))
                            (alphanumericp nil))
   "Returns a generator of characters.