Commit 0fc2350
Fix for eldoc-mode for ClojureCLR
When using the REPL, whenever you'd type the function name, because
Throwable is JVM specific, eldoc-mode would try to look up the
function and when it wouldn't find it, it would bomb out with the
complaint that Throwable wasn't defined. Which is to be expected since
it's not running on JVM.
Looking at the documentation
https://docs.oracle.com/javase/10/docs/api/java/lang/Throwable.html
"The Throwable class is the superclass of all errors and exceptions in
the Java language."
And in C#, Exception
https://docs.microsoft.com/en-us/dotnet/api/system.exception?redirectedfrom=MSDN&view=netframework-4.8
"This class is the base class for all exceptions."1 parent 16455ab commit 0fc2350
2 files changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
900 | 900 | | |
901 | 901 | | |
902 | 902 | | |
903 | | - | |
| 903 | + | |
904 | 904 | | |
905 | 905 | | |
906 | 906 | | |
| |||
0 commit comments