diff --git a/docs/man/man1/dmd.1 b/docs/man/man1/dmd.1 index 9b41db6483..89b62e4e1b 100644 --- a/docs/man/man1/dmd.1 +++ b/docs/man/man1/dmd.1 @@ -1,4 +1,4 @@ -.TH DMD 1 "2011-02-22" "Digital Mars" "Digital Mars D" +.TH DMD 1 "2011-02-22" "The D Language Foundation" "The D Language Foundation" .SH NAME dmd \- Digital Mars D2.x Compiler .SH SYNOPSIS @@ -239,10 +239,10 @@ does it. I don't know if this is an issue or not. .PP The compiler sometimes gets the line number wrong on an error. .SH AUTHOR -Copyright (c) 1999-2016 by Digital Mars written by Walter Bright +Copyright (c) 1999-2017 by The D Language Foundation written by Walter Bright .SH "ONLINE DOCUMENTATION" -.UR http://www.digitalmars.com/d/index.html -http://www.digitalmars.com/d/index.html +.UR https://dlang.org/dmd.html +https://dlang.org/dmd.html .UE .SH "SEE ALSO" .BR dmd.conf (5) diff --git a/dub.sdl b/dub.sdl index 258d0df73b..3b9911e689 100644 --- a/dub.sdl +++ b/dub.sdl @@ -1,7 +1,7 @@ name "dmd" description "The DMD compiler" authors "Walter Bright" -copyright "Copyright © 1999-2017, Digital Mars" +copyright "Copyright © 1999-2017, The D Language Foundation" license "BSL-1.0" targetType "none" diff --git a/src/ddmd/backend/cdef.h b/src/ddmd/backend/cdef.h index c300b2329a..7b170942a2 100644 --- a/src/ddmd/backend/cdef.h +++ b/src/ddmd/backend/cdef.h @@ -599,18 +599,18 @@ typedef int SYMIDX; // symbol table index #ifndef COPYRIGHT_SYMBOL #define COPYRIGHT_SYMBOL "\xA9" #endif -#define COPYRIGHT "Copyright " COPYRIGHT_SYMBOL " 2001 Digital Mars" +#define COPYRIGHT "Copyright " COPYRIGHT_SYMBOL " 2001-2017 The D Language Foundation" #else #ifdef DEBUG -#define COPYRIGHT "Copyright (C) Digital Mars 2000-2016. All Rights Reserved.\n\ +#define COPYRIGHT "Copyright (C) The D Language Foundation 2000-2017. All Rights Reserved.\n\ Written by Walter Bright\n\ *****BETA TEST VERSION*****" #else #if __linux__ -#define COPYRIGHT "Copyright (C) Digital Mars 2000-2016. All Rights Reserved.\n\ +#define COPYRIGHT "Copyright (C) The D Language Foundation 2000-2017. All Rights Reserved.\n\ Written by Walter Bright, Linux version by Pat Nelson" #else -#define COPYRIGHT "Copyright (C) Digital Mars 2000-2016. All Rights Reserved.\n\ +#define COPYRIGHT "Copyright (C) The D Language Foundation Mars 2000-2017. All Rights Reserved.\n\ Written by Walter Bright" #endif #endif diff --git a/src/ddmd/cppmanglewin.d b/src/ddmd/cppmanglewin.d index 71b79c574f..eb2b857119 100644 --- a/src/ddmd/cppmanglewin.d +++ b/src/ddmd/cppmanglewin.d @@ -1,7 +1,7 @@ /** * Compiler implementation of the $(LINK2 http://www.dlang.org, D programming language) * - * Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved + * Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved * Authors: Walter Bright, http://www.digitalmars.com * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/ddmd/cppmanglewin.d, _cppmanglewin.d) diff --git a/src/ddmd/dsymbolsem.d b/src/ddmd/dsymbolsem.d index 017de950a8..dc4f07f2de 100644 --- a/src/ddmd/dsymbolsem.d +++ b/src/ddmd/dsymbolsem.d @@ -2,7 +2,7 @@ * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * - * Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved + * Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/ddmd/dsymbolsem.d, _dsymbolsem.d) diff --git a/src/ddmd/expressionsem.d b/src/ddmd/expressionsem.d index 145c0b83e6..966807f8b2 100644 --- a/src/ddmd/expressionsem.d +++ b/src/ddmd/expressionsem.d @@ -2,7 +2,7 @@ * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * - * Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved + * Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DMDSRC _expression.d) diff --git a/src/ddmd/globals.d b/src/ddmd/globals.d index 09621555fc..1dd3690fcf 100644 --- a/src/ddmd/globals.d +++ b/src/ddmd/globals.d @@ -355,7 +355,7 @@ struct Global { static assert(0, "fix this"); } - copyright = "Copyright (c) 1999-2017 by Digital Mars"; + copyright = "Copyright (c) 1999-2017 by The D Language Foundation"; written = "written by Walter Bright"; _version = (import("VERSION") ~ '\0').ptr; compiler.vendor = "Digital Mars D"; diff --git a/src/ddmd/initsem.d b/src/ddmd/initsem.d index 2d33582926..ad7496606a 100644 --- a/src/ddmd/initsem.d +++ b/src/ddmd/initsem.d @@ -2,7 +2,7 @@ * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * - * Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved + * Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/ddmd/initsem.d, _initsem.d) diff --git a/src/ddmd/mars.h b/src/ddmd/mars.h index 9ec4ed62ea..709256cb87 100644 --- a/src/ddmd/mars.h +++ b/src/ddmd/mars.h @@ -1,6 +1,6 @@ /* Compiler implementation of the D programming language - * Copyright (c) 1999-2016 by Digital Mars + * Copyright (c) 1999-2016 by The D Language Foundation * All Rights Reserved * written by Walter Bright * http://www.digitalmars.com diff --git a/src/ddmd/semantic.d b/src/ddmd/semantic.d index 9c8aa58360..613edc53ad 100644 --- a/src/ddmd/semantic.d +++ b/src/ddmd/semantic.d @@ -2,7 +2,7 @@ * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * - * Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved + * Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/ddmd/semantic.d, _semantic.d) diff --git a/src/ddmd/templateparamsem.d b/src/ddmd/templateparamsem.d index 0612d9e057..0408563a7d 100644 --- a/src/ddmd/templateparamsem.d +++ b/src/ddmd/templateparamsem.d @@ -4,7 +4,7 @@ * * Template implementation. * - * Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved + * Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/ddmd/templateparamsem.d, _templateparamsem.d) diff --git a/src/ddmd/typesem.d b/src/ddmd/typesem.d index 340bef1071..9a5a70be2a 100644 --- a/src/ddmd/typesem.d +++ b/src/ddmd/typesem.d @@ -2,7 +2,7 @@ * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * - * Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved + * Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DMDSRC _mtype.d) diff --git a/src/vcbuild/ldfpu.asm b/src/vcbuild/ldfpu.asm index c771fcba1e..0ef4c675f5 100644 --- a/src/vcbuild/ldfpu.asm +++ b/src/vcbuild/ldfpu.asm @@ -1,5 +1,5 @@ ;; Compiler implementation of the D programming language -;; Copyright (c) 1999-2016 by Digital Mars +;; Copyright (c) 1999-2016 by The D Language Foundation ;; All Rights Reserved ;; written by Rainer Schuetze ;; http://www.digitalmars.com diff --git a/src/win32.mak b/src/win32.mak index 314772e663..56bff8af8b 100644 --- a/src/win32.mak +++ b/src/win32.mak @@ -1,6 +1,6 @@ #_ win32.mak # -# Copyright (c) 1999-2016 by Digital Mars +# Copyright (c) 1999-2016 by The D Language Foundation # All Rights Reserved # written by Walter Bright # http://www.digitalmars.com diff --git a/test/runnable/iasm.d b/test/runnable/iasm.d index b932b268db..a3cefa24af 100644 --- a/test/runnable/iasm.d +++ b/test/runnable/iasm.d @@ -1,6 +1,6 @@ // PERMUTE_ARGS: -// Copyright (c) 1999-2016 by Digital Mars +// Copyright (c) 1999-2016 by The D Language Foundation // All Rights Reserved // written by Walter Bright // http://www.digitalmars.com diff --git a/test/runnable/iasm64.d b/test/runnable/iasm64.d index 9997deac81..8236f4f2b8 100644 --- a/test/runnable/iasm64.d +++ b/test/runnable/iasm64.d @@ -1,6 +1,6 @@ // PERMUTE_ARGS: -// Copyright (c) 1999-2016 by Digital Mars +// Copyright (c) 1999-2016 by The D Language Foundation // All Rights Reserved // written by Walter Bright // http://www.digitalmars.com