[Issue 5839] Spellchecker matches private symbols outside of the module, leading to extra, broken error messages

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=5839 Basile-z changed: What|Removed |Added Status|RESOLVED|REOPENED CC|

[Issue 20498] New: A way to initialize a struct of delegates with no-op stubs?

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20498 Issue ID: 20498 Summary: A way to initialize a struct of delegates with no-op stubs? Product: D Version: D2 Hardware: All OS: All Status: NEW

[Issue 6952] Static Linking on Linux

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6952 jens.k.muel...@gmx.de changed: What|Removed |Added CC||jens.k.muel...@gmx.de --- Comment #13

[Issue 20489] Installer deleting files after install

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20489 --- Comment #3 from Simen Kjaeraas --- Tested at home today, and I'm unable to recreate the issue. Looking at the install folder uninstall.exe is deleted within a quarter second of the uninstaller completing, while this would take several seconds at

[Issue 20497] thread with limited stackspace crashes depending on size of TLS

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20497 Dlang Bot changed: What|Removed |Added Keywords||pull --- Comment #1 from Dlang Bot ---

[Issue 17269] formattedWrite of struct with Nullable value fails

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17269 Steven Schveighoffer changed: What|Removed |Added CC||schvei...@yahoo.com --- Comment #7

[Issue 17269] formattedWrite of struct with Nullable string fails

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17269 Steven Schveighoffer changed: What|Removed |Added Summary|formattedWrite of struct|formattedWrite of struct

[Issue 20497] New: thread with limited stackspace crashes depending on size of TLS

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20497 Issue ID: 20497 Summary: thread with limited stackspace crashes depending on size of TLS Product: D Version: D2 Hardware: All OS: Linux Status: NEW

[Issue 17441] std.traits.moduleName gives wrong answer for modules imported under a different name in a mixin

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17441 --- Comment #2 from berni44 --- The problem is the call to packageName, not moduleName: void main() { import std.traits : packageName; import mod0 = foo.bar.baz; import mod1 = foo.bar; assert(packageName!mod0 == "foo.bar"); //

[Issue 17441] std.traits.moduleName gives wrong answer for modules imported under a different name in a mixin

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17441 berni44 changed: What|Removed |Added CC||bugzi...@d-ecke.de Hardware|x86_64

[Issue 20460] [OSX] Stack traces involving extern(C++) can show wrong file / line

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20460 Mathias LANG changed: What|Removed |Added Summary|Stack traces on OSX show|[OSX] Stack traces |wrong

[Issue 20460] Stack traces on OSX show wrong file / line

2020-01-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20460 --- Comment #2 from Mathias LANG --- Found a way to reproduce: --- a.d module a; import b; import c; void main () { auto o1 = new Foo(); o1.bar(5); } --- b.d module b; extern(C++) void func() {} --- c.d module c; extern(C++) class Foo {