We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e4b741 commit c4b5445Copy full SHA for c4b5445
contrib/swank-fuzzy.lisp
@@ -74,7 +74,9 @@ designator's format. The cases are as follows:
74
(zerop time-limit-in-msec)))
75
(time-limit (if no-time-limit-p nil time-limit-in-msec)))
76
(multiple-value-bind (completion-set interrupted-p)
77
- (fuzzy-completion-set string default-package-name :limit limit
+ ;; Deep down there's a type SIMPLE-STRING required...
78
+ (fuzzy-completion-set (coerce string 'simple-string)
79
+ default-package-name :limit limit
80
:time-limit-in-msec time-limit)
81
;; We may send this as elisp [] arrays to spare a coerce here,
82
;; but then the network serialization were slower by handling arrays.
0 commit comments