Skip to content

Commit ac7240b

Browse files
author
Dave Moon
committed
Fix quoting problem in my previous commit
1 parent 9e7e186 commit ac7240b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

base/interactiveutil.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -237,10 +237,10 @@ typesof(args...) = map(a->(isa(a,Type) ? Type{a} : typeof(a)), args)
237237
end
238238
end
239239
elseif ex.head == :thunk
240-
exret = quote error("expression is not a function call, "
241-
* "or is too complex for @", $fcn, " to analyze; "
242-
* "break it down to simpler parts if possible")
243-
end
240+
msg = "expression is not a function call, " *
241+
"or is too complex for @$fcn to analyze; " *
242+
"break it down to simpler parts if possible"
243+
exret = quote error($msg) end
244244
end
245245
exret
246246
end

0 commit comments

Comments
 (0)