Thread overview
dmd 0.93?
Jun 21, 2004
J C Calvarese
Jun 21, 2004
Walter
June 21, 2004
Walter, in the changelog version 0.93 is mentioned  (even if you never posted anything about it), but the file is still for 0.92.

-----------------------
Carlos Santander Bernal


June 21, 2004
Carlos Santander B. wrote:
> Walter, in the changelog version 0.93 is mentioned  (even if you never
> posted anything about it), but the file is still for 0.92.
> 
> -----------------------
> Carlos Santander Bernal

My guess is that it's foreshadowing. I re-downloaded from the website and re-installed and it seems to be the same as DMD 0.92.

In particular, the char/wchar/dchar init values seem to be unchanged.

void main()
{
    if(char.init == 0)
        printf("DMD 0.92 char.init.\n");
    if(wchar.init == 0)
        printf("DMD 0.92 wchar.init.\n");
    if(dchar.init == 0)
        printf("DMD 0.92 dchar.init.\n");

    if(char.init == 0xFF)
        printf("DMD 0.93 char.init.\n");
    if(wchar.init == 0xFFFF)
        printf("DMD 0.93 wchar.init.\n");
    if(wchar.init == 0x0000FFFF)
        printf("DMD 0.93 dchar.init.\n");
}

Output:
DMD 0.92 char.init.
DMD 0.92 wchar.init.
DMD 0.92 dchar.init.

-- 
Justin (a/k/a jcc7)
http://jcc_7.tripod.com/d/
June 21, 2004
.93 isn't done yet!

"J C Calvarese" <jcc7@cox.net> wrote in message news:cb5i92$2clv$1@digitaldaemon.com...
> Carlos Santander B. wrote:
> > Walter, in the changelog version 0.93 is mentioned  (even if you never posted anything about it), but the file is still for 0.92.
> >
> > -----------------------
> > Carlos Santander Bernal
>
> My guess is that it's foreshadowing. I re-downloaded from the website and re-installed and it seems to be the same as DMD 0.92.
>
> In particular, the char/wchar/dchar init values seem to be unchanged.
>
> void main()
> {
>      if(char.init == 0)
>          printf("DMD 0.92 char.init.\n");
>      if(wchar.init == 0)
>          printf("DMD 0.92 wchar.init.\n");
>      if(dchar.init == 0)
>          printf("DMD 0.92 dchar.init.\n");
>
>      if(char.init == 0xFF)
>          printf("DMD 0.93 char.init.\n");
>      if(wchar.init == 0xFFFF)
>          printf("DMD 0.93 wchar.init.\n");
>      if(wchar.init == 0x0000FFFF)
>          printf("DMD 0.93 dchar.init.\n");
> }
>
> Output:
> DMD 0.92 char.init.
> DMD 0.92 wchar.init.
> DMD 0.92 dchar.init.
>
> -- 
> Justin (a/k/a jcc7)
> http://jcc_7.tripod.com/d/