|
|
@@ -373,8 +373,8 @@
|
|
|
:test #'equal) #'string<))
|
|
|
(total (length children)))
|
|
|
(when (stringp offset)
|
|
|
- (alexandria:when-let (off (position offset children :test #'equal))
|
|
|
- (setf offset (max 0 (- off (round count 2))))))
|
|
|
+ (let ((off (position offset children :test #'equal)))
|
|
|
+ (setf offset (if off (max 0 (- off (round count 2))) 0))))
|
|
|
(values account parent
|
|
|
(mapcar
|
|
|
#'(lambda (c)
|