[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #15 from dennis.m.ritc...@mail.ru --- (In reply to Ketmar Dark from comment #14) (In reply to dennis.m.ritchie from comment #13) But what about the thousands of people with GitHub? :) i don't see any solid evidences that changing

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #16 from Ketmar Dark ket...@ketmar.no-ip.org --- i'm writing like the only person that see a sense in talking about that. i was hoped that it is a clear hint about importance and acceptance of your proposal. and i was trying to moving you

[Issue 14710] New: VC-built DMD crashes on templated variadic function IFTI

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14710 Issue ID: 14710 Summary: VC-built DMD crashes on templated variadic function IFTI Product: D Version: D2 Hardware: All OS: All Status: NEW

[Issue 14710] VC-built DMD crashes on templated variadic function IFTI

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14710 --- Comment #1 from Vladimir Panteleev thecybersha...@gmail.com --- When built in the Debug/x64 configuration, the compiler produces the following error: test.d(7,3): Error: template test.a cannot deduce function from argument types !()(string,

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #17 from dennis.m.ritc...@mail.ru --- Do you agree that one of the directions D - is to write less code than required C++? I really like this way of D. So why do we have to write more code than you need, in this place? --

[Issue 14710] VC-built DMD crashes on templated variadic function IFTI

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14710 --- Comment #4 from Vladimir Panteleev thecybersha...@gmail.com --- The PR in question moved the new operator overload to its own .c file, which was added to the makefiles but not the Visual Studio project files. As a result, Visual Studio builds

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #18 from dennis.m.ritc...@mail.ru --- tired_eyes wrote: `If we have shorthand syntax for full imports, why there is no option for shorthand partial imports? This is expected behavior.` What is not an argument? --

[Issue 14710] VC-built DMD crashes on templated variadic function IFTI

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14710 --- Comment #3 from Vladimir Panteleev thecybersha...@gmail.com --- Same with Release/Win32 and Debug/Win32 as with /x64. --

[Issue 14710] VC-built DMD crashes on templated variadic function IFTI

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14710 --- Comment #2 from Vladimir Panteleev thecybersha...@gmail.com --- Debug/x64 also started failing after dmd PR#4535. --

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #26 from dennis.m.ritc...@mail.ru --- At the moment, we can only write this: import a, b, c : baz; And we can not write this: import a : foo, b : bar, c : baz; So do not be, because it is completely unreadable (if a lot of modules - a

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #22 from dennis.m.ritc...@mail.ru --- (In reply to Ketmar Dark from comment #16) besides, there already was a discussion about something similar, and the answer was no. Prior to that, decisions have been bad enough. My solution solves

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #19 from Ketmar Dark ket...@ketmar.no-ip.org --- (In reply to dennis.m.ritchie from comment #17) Do you agree that one of the directions D - is to write less code than required C++? nope. (In reply to dennis.m.ritchie from comment

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #20 from dennis.m.ritc...@mail.ru --- (In reply to Ketmar Dark from comment #19) (In reply to dennis.m.ritchie from comment #17) Do you agree that one of the directions D - is to write less code than required C++? nope. Quote of

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #21 from dennis.m.ritc...@mail.ru --- And I want to ask you another question: Why do not need to add this syntax in D? --

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 weaselcat r9shacklef...@gmail.com changed: What|Removed |Added CC||r9shacklef...@gmail.com

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #25 from dennis.m.ritc...@mail.ru --- (In reply to Ketmar Dark from comment #24) import a; import b; import c; three lines. import { a; b; c; } five lines. i think that discussion can be closed now.

[Issue 14710] VC-built DMD crashes on templated variadic function IFTI

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14710 --- Comment #6 from Vladimir Panteleev thecybersha...@gmail.com --- (In reply to Vladimir Panteleev from comment #5) https://github.com/D-Programming-Language/dmd/pull/4535 Sorry, correct link is:

[Issue 14702] struct epoll_event is packed incorrectly

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14702 Vladimir Panteleev thecybersha...@gmail.com changed: What|Removed |Added Keywords||pull

[Issue 14710] VC-built DMD crashes on templated variadic function IFTI

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14710 Vladimir Panteleev thecybersha...@gmail.com changed: What|Removed |Added Keywords||pull --

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #24 from Ketmar Dark ket...@ketmar.no-ip.org --- (In reply to dennis.m.ritchie from comment #20) (In reply to Ketmar Dark from comment #19) (In reply to dennis.m.ritchie from comment #17) Do you agree that one of the directions D -

[Issue 14710] VC-built DMD crashes on templated variadic function IFTI

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14710 --- Comment #5 from Vladimir Panteleev thecybersha...@gmail.com --- Pull request to make the VS build use the bump-the-pointer allocator: https://github.com/D-Programming-Language/dmd/pull/4535 The use-after-free bug remains, though. --

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #27 from dennis.m.ritc...@mail.ru --- (In reply to weaselcat from comment #23) I think this is a good idea, maybe you should bring it up on the main NG. Where can I do it? I understand that it's here somewhere: news.digitalmars.com

[Issue 14703] Missing SIMD definitions for backend\el.c 2613

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14703 Vladimir Panteleev thecybersha...@gmail.com changed: What|Removed |Added Keywords||pull

[Issue 14418] D-style Variadic Function example does not compile

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14418 --- Comment #3 from github-bugzi...@puremagic.com --- Commit pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/07e979c53f042aa5b4aa7fa85739e2992ebedb03 Merge pull

[Issue 14338] Implement DIP25 Sealed References

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14338 --- Comment #2 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/77ba899e74452771723dfadaebb3c80873e4cabc Add issue 14338

[Issue 14259] rdmd: --build-only / -of / -od incompatible with --dry-run

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14259 --- Comment #3 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/tools https://github.com/D-Programming-Language/tools/commit/3ff5be6ee514d7a5239d1854cc58db22e3623ee3 fix Issue 14259 - rdmd:

[Issue 14329] [2.067] offline doc - menu broken due to missing jquery-1.7.2.min.js

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14329 github-bugzi...@puremagic.com changed: What|Removed |Added Status|CLOSED |RESOLVED --

[Issue 14080] No mention of documented unittests on ddoc's page

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14080 --- Comment #5 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/738506db345b483657cd11c63ad49ba1b566d5a5 Fix issue 14080

[Issue 12803] __traits(getFunctionAttributes) is not documented

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12803 --- Comment #3 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/884f46101ea0cdb611cc3c5c43a1961202818980 Fix issue 12803

[Issue 14280] Links to command line tools have disappeared from navigation

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14280 --- Comment #7 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/be9392998dfdd2d66db7b1ff7137deb5d4ca0ae4 mostly fix

[Issue 14326] syntax highlighting of dpl-docs no longer works

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14326 --- Comment #2 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/1ec3961e7fa4fd7840408be54c6213fc1dc13ede Fix issue 14326

[Issue 13758] RDMD renames directory if -ofNAME is the name of a directory

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13758 --- Comment #4 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/tools https://github.com/D-Programming-Language/tools/commit/7b655a13ce020232b625fabaaea5918fad18fcc2 fix Issue 13758 - RDMD

[Issue 14258] SIGSEGV in dpldocs

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14258 --- Comment #13 from github-bugzi...@puremagic.com --- Commit pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/cc8d8123ef0dff1705e729d1faad2b710639771f Merge pull

[Issue 14329] [2.067] offline doc - menu broken due to missing jquery-1.7.2.min.js

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14329 --- Comment #11 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/f074e250f9ac0079801b3e98eeaad2d33d1c0d98 fix Issue

[Issue 4733] Possible bugs caused by dynamic arrays in boolean evaluation context

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4733 --- Comment #33 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/baa98b725ac75356a29405c164743f7cea7d502d Add changelog

[Issue 133] Assertion toobj.c:258

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=133 --- Comment #4 from github-bugzi...@puremagic.com --- Commit pushed to stable at https://github.com/D-Programming-Language/tools https://github.com/D-Programming-Language/tools/commit/90465564e9be19f05c58be834260d7f4068b705c rdmd: Remove tango warning

[Issue 14661] Error executing command build: Unknown dependency: ddox when building website

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14661 --- Comment #4 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/1c4d0072f90e5b5fae3b0c25a450ddc50187f0d3 Issue 14661 -

[Issue 13527] ddoc website documentation does not match the current built-in symbols

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13527 --- Comment #3 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/D-Programming-Language/dlang.org https://github.com/D-Programming-Language/dlang.org/commit/c79b179cc0bf1128916521db70bba9d08e3dffd3 Fix issue 13527

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #33 from Ketmar Dark ket...@ketmar.no-ip.org --- (In reply to dennis.m.ritchie from comment #31) so i was right: you choose to go personal 'cause you have zero technical arguments. thanks for not hiding that fact. --

[Issue 14296] RDMD fails at building a lib when the source is in a subdir

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14296 --- Comment #2 from Nick Sabalausky cbkbbej...@mailinator.com --- https://github.com/D-Programming-Language/dmd/pull/4753 --

[Issue 14305] DMD incorrectly interprets -of and -od with -lib

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14305 --- Comment #5 from Nick Sabalausky cbkbbej...@mailinator.com --- https://github.com/D-Programming-Language/dmd/pull/4753 --

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #28 from Ketmar Dark ket...@ketmar.no-ip.org --- (In reply to dennis.m.ritchie from comment #25) My design ... is more readable no. --

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #29 from dennis.m.ritc...@mail.ru --- (In reply to Ketmar Dark from comment #28) (In reply to dennis.m.ritchie from comment #25) My design ... is more readable no. For you it is more readable: import std.stdio : write, writeln,

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #30 from Ketmar Dark ket...@ketmar.no-ip.org --- (In reply to dennis.m.ritchie from comment #29) For you it is more readable: import std.stdio : write, writeln, readf, std.range : iota, chain, std.algorithm : sort, copy, fill;

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #31 from dennis.m.ritc...@mail.ru --- (In reply to Ketmar Dark from comment #30) yes, i am. do you feel offended? i'm glad. and i'm glad that you ran out of silly arguments and start personal attacks. No, I'm not offended. I just

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #32 from weaselcat r9shacklef...@gmail.com --- don't argue with ketmar, nothing productive will come out of it. --

[Issue 14305] DMD incorrectly interprets -of and -od with -lib

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14305 Nick Sabalausky cbkbbej...@mailinator.com changed: What|Removed |Added CC|

[Issue 13566] std.algorithm.cmp treats string length as element

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13566 --- Comment #1 from Ali Cehreli acehr...@yahoo.com --- I hit this again. :( --

[Issue 14279] [REG:git-head]Failed to make dmd because of idgen : HOST_DC missing

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14279 Denis Shelomovskij verylonglogin@gmail.com changed: What|Removed |Added Resolution|FIXED |WONTFIX --

[Issue 14704] The design, which allows not to write import, import, import ... for selective imports

2015-06-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14704 --- Comment #14 from Ketmar Dark ket...@ketmar.no-ip.org --- (In reply to dennis.m.ritchie from comment #13) But what about the thousands of people with GitHub? :) i don't see any solid evidences that changing import syntax is the thing they