Jump to page: 1 2 3
Thread overview
DMD 0.130 release
Sep 06, 2005
Walter Bright
Sep 06, 2005
clayasaurus
Sep 07, 2005
Walter Bright
Sep 07, 2005
Ben Hinkle
Sep 07, 2005
Hasan Aljudy
Sep 09, 2005
Walter Bright
Sep 07, 2005
jicman
Sep 07, 2005
Walter Bright
Sep 07, 2005
Don Clugston
Sep 07, 2005
Walter Bright
Sep 08, 2005
Don Clugston
Sep 09, 2005
Walter Bright
Sep 07, 2005
Stewart Gordon
Sep 07, 2005
Ben Hinkle
Sep 07, 2005
Walter Bright
Sep 07, 2005
David L. Davis
Sep 08, 2005
xs0
Sep 08, 2005
Stewart Gordon
Sep 09, 2005
Walter Bright
Sep 09, 2005
Derek Parnell
Sep 09, 2005
Walter Bright
Sep 09, 2005
Derek Parnell
Sep 09, 2005
Stewart Gordon
Sep 09, 2005
David L. Davis
Sep 09, 2005
pragma
Sep 09, 2005
Sean Kelly
September 06, 2005
http://www.digitalmars.com/d/changelog.html



September 06, 2005
Walter Bright wrote:
> http://www.digitalmars.com/d/changelog.html
> 
> 
> 

Mmm.... bugs!!!

http://img378.imageshack.us/my.php?image=10001261rn.jpg
http://img378.imageshack.us/my.php?image=10001259sh.jpg

(sorry, couldn't resist linking to my favorite bug eater which I just happened to find today! And then afterwards see all these bug fixes!)
September 07, 2005
"Walter Bright" <newshound@digitalmars.com> wrote in message news:dfl7ju$1u8b$1@digitaldaemon.com...
>
> http://www.digitalmars.com/d/changelog.html

Looking back at some of the recent updates, I kind of wonder who's doing more work - you, or Ben Hinkle ;)  The upshot of it is that we now have a very professional-feeling Streams library.  Makes me want to work on Phobos too.


September 07, 2005
Walter Bright wrote:
> http://www.digitalmars.com/d/changelog.html

>Fixed D.bugs/4750
What about:
http://www.digitalmars.com/drn-bin/wwwnews?digitalmars.D.bugs/4832
Which is somewhat similar, but different.

also see:
http://www.digitalmars.com/drn-bin/wwwnews?digitalmars.D.bugs/4836

Unless I'm doing something wrong, the bug is still there:
----------------------------------------------------------
D:\Documents and Settings\Aljudy\temp>dmd
Digital Mars D Compiler v0.130
Copyright (c) 1999-2005 by Digital Mars written by Walter Bright
Documentation: www.digitalmars.com/d/index.html
Usage:
  dmd files.d ... { -switch }

  files.d        D source files
  -c             do not link
  -d             allow deprecated features
  -debug         compile in debug code
  -debug=level   compile in debug code <= level
  -debug=ident   compile in debug code identified by ident
  -g             add symbolic debug info
  -Ipath         where to look for imports
  -inline        do function inlining
  -Llinkerflag   pass linkerflag to link
  -O             optimize
  -odobjdir      write object files to directory objdir
  -offilename    name output file to filename
  -op            do not strip paths from source file
  -profile       profile runtime performance of generated code
  -quiet         suppress unnecessary messages
  -release       compile release version
  -unittest      compile in unit tests
  -v             verbose
  -version=level compile in version code >= level
  -version=ident compile in version code identified by ident
  -w             enable warnings

D:\Documents and Settings\Aljudy\temp>type bug.d
void main(char[][] arg)
{
    printf("-5/3 prints: %d\n", -5/3);
    printf("-5/2 prints: %d\n", -5/2);
    printf("-7/3 prints: %d\n", -7/3);
    printf("-7/4 prints: %d\n", -7/4);
    printf("-7/7 prints: %d\n", -7/7);
    printf("-8/7 prints: %d\n", -8/7);
    printf("-12/6 prints: %d\n", -12/6);
    printf("12/6 prints: %d\n", 12/6);
    printf("-9/7 prints: %d\n", -9/7);
    printf("-11/8 prints: %d\n", -11/8);
    printf("-7/9 prints: %d\n", -7/9);
}
D:\Documents and Settings\Aljudy\temp>dmd bug.d
E:\dmd\dmd\bin\..\..\dm\bin\link.exe bug,,,user32+kernel32/noi;

D:\Documents and Settings\Aljudy\temp>bug
-5/3 prints: 1431655763
-5/2 prints: -3
-7/3 prints: 1431655763
-7/4 prints: -2
-7/7 prints: -1840700271
-8/7 prints: -1840700271
-12/6 prints: -1431655768
12/6 prints: 2
-9/7 prints: -1840700271
-11/8 prints: -2
-7/9 prints: 1908874353

D:\Documents and Settings\Aljudy\temp>
----------------------------------------------------------
September 07, 2005
"Jarrett Billingsley" <kb3ctd2@yahoo.com> wrote in message news:dflb11$20s6$1@digitaldaemon.com...
> "Walter Bright" <newshound@digitalmars.com> wrote in message news:dfl7ju$1u8b$1@digitaldaemon.com...
> >
> > http://www.digitalmars.com/d/changelog.html
>
> Looking back at some of the recent updates, I kind of wonder who's doing more work - you, or Ben Hinkle ;)  The upshot of it is that we now have a very professional-feeling Streams library.  Makes me want to work on
Phobos
> too.

Ben Hinkle has been doing excellent work. I am grateful to him for his efforts.


September 07, 2005
dead link:

http://www.digitalmars.com/d/phobos/errors.html

Walter Bright says...
>
>
>http://www.digitalmars.com/d/changelog.html
>
>
>


September 07, 2005
"Walter Bright" <newshound@digitalmars.com> wrote in message news:dflipi$26l0$1@digitaldaemon.com...
>
> "Jarrett Billingsley" <kb3ctd2@yahoo.com> wrote in message news:dflb11$20s6$1@digitaldaemon.com...
>> "Walter Bright" <newshound@digitalmars.com> wrote in message news:dfl7ju$1u8b$1@digitaldaemon.com...
>> >
>> > http://www.digitalmars.com/d/changelog.html
>>
>> Looking back at some of the recent updates, I kind of wonder who's doing more work - you, or Ben Hinkle ;)  The upshot of it is that we now have a very professional-feeling Streams library.  Makes me want to work on
> Phobos
>> too.
>
> Ben Hinkle has been doing excellent work. I am grateful to him for his efforts.

Thanks guys! I encourage others to get involved with phobos, too.


September 07, 2005
I'm delighted to see my name on the changelog, after such a short experience with D -- it's much easier to contribute to than C++ !!

But looking in std.math, I see you've included my draft function, precisionEquality(). This was superceded by feqrel(). It should be removed in the next update.

Might be worth making iabs public, though.

I have written a few more functions for std.math, but I will submit them  together as a block.
September 07, 2005
Walter Bright wrote:
> http://www.digitalmars.com/d/changelog.html

"added File.available overload digitalmars.D/27384"

What has this particular post to do with File.available?

Stewart.

-- 
-----BEGIN GEEK CODE BLOCK-----
Version: 3.1
GCS/M d- s:- C++@ a->--- UB@ P+ L E@ W++@ N+++ o K-@ w++@ O? M V? PS- PE- Y? PGP- t- 5? X? R b DI? D G e++>++++ h-- r-- !y
------END GEEK CODE BLOCK------

My e-mail is valid but not my primary mailbox.  Please keep replies on the 'group where everyone may benefit.
September 07, 2005
>> http://www.digitalmars.com/d/changelog.html
>
> "added File.available overload digitalmars.D/27384"
>
> What has this particular post to do with File.available?

Somewhere between my email and the release the number 6 changed to a 3. It should be http://www.digitalmars.com/drn-bin/wwwnews?digitalmars.D/27684


« First   ‹ Prev
1 2 3