Skip to content

Commit 9303633

Browse files
committed
bdx: Fix byte compilation on Emacs<29
* bdx.el (bdx--ivy-display-transformer): Use `split-string' instead of new `string-split'.
1 parent 8f69f71 commit 9303633

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bdx.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ This turns a string of the form \\='function<type<T>>\\=' into
521521
demangled
522522
(bdx--untemplatize-string demangled))
523523
name)))
524-
(dolist (word (string-split ivy-text))
524+
(dolist (word (split-string ivy-text))
525525
(when (ignore-errors
526526
(let ((case-fold-search t))
527527
(string-match word line)))

0 commit comments

Comments
 (0)