Skip to content

Commit 681115c

Browse files
committed
fix comletions on x86
1 parent 1e89886 commit 681115c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/completions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function basecompletionadapter(line, mod, force, lineNumber, column, text)
3838
pre = line[replace]
3939
d = []
4040
for c in comps
41-
if REPLCompletions.afterusing(line, first(replace))
41+
if REPLCompletions.afterusing(line, Int(first(replace))) # need `Int` for correct dispatch on x86
4242
c isa REPLCompletions.PackageCompletion || continue
4343
end
4444
try

0 commit comments

Comments
 (0)