Skip to content

Commit 755fca0

Browse files
author
Dave Moon
committed
Fix error message interpolation in gen_call_with_extracted_types()
1 parent 4dfd75c commit 755fca0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/interactiveutil.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ typesof(args...) = map(a->(isa(a,Type) ? Type{a} : typeof(a)), args)
238238
end
239239
elseif ex.head == :thunk
240240
exret = quote error("expression is not a function call, "
241-
* "or is too complex for @$fcn to analyze; "
241+
* "or is too complex for @", $fcn, " to analyze; "
242242
* "break it down to simpler parts if possible")
243243
end
244244
end

0 commit comments

Comments
 (0)