From 50473ac9d42d6dd563f9049f8f8465563eb9c941 Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Fri, 15 Feb 2019 10:10:35 -0500 Subject: [PATCH] Add copyright sign to headers. * gash/built-ins/*, gash/environment.scm, gash/eval.scm, gash/lexer.scm, gash/parser.scm, gash/repl.scm, gash/word.scm, tests/unit/*, tools/coverage.in: Add copyright sign to headers. --- gash/built-ins.scm | 2 +- gash/built-ins/break.scm | 2 +- gash/built-ins/cd.scm | 2 +- gash/built-ins/colon.scm | 2 +- gash/built-ins/continue.scm | 2 +- gash/built-ins/dot.scm | 2 +- gash/built-ins/echo.scm | 2 +- gash/built-ins/eval.scm | 2 +- gash/built-ins/exec.scm | 2 +- gash/built-ins/exit.scm | 2 +- gash/built-ins/export.scm | 2 +- gash/built-ins/false.scm | 2 +- gash/built-ins/pwd.scm | 2 +- gash/built-ins/read.scm | 2 +- gash/built-ins/readonly.scm | 2 +- gash/built-ins/return.scm | 2 +- gash/built-ins/set.scm | 2 +- gash/built-ins/shift.scm | 2 +- gash/built-ins/trap.scm | 2 +- gash/built-ins/true.scm | 2 +- gash/built-ins/umask.scm | 2 +- gash/built-ins/unset.scm | 2 +- gash/built-ins/utils.scm | 2 +- gash/environment.scm | 2 +- gash/eval.scm | 2 +- gash/lexer.scm | 2 +- gash/parser.scm | 2 +- gash/repl.scm | 2 +- gash/word.scm | 2 +- tests/unit/automake.scm | 2 +- tests/unit/lexer.scm | 2 +- tests/unit/parser.scm | 2 +- tests/unit/pattern.scm | 2 +- tests/unit/shell.scm | 2 +- tests/unit/word.scm | 2 +- tools/coverage.in | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/gash/built-ins.scm b/gash/built-ins.scm index 80c0a38..001b4c0 100644 --- a/gash/built-ins.scm +++ b/gash/built-ins.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/break.scm b/gash/built-ins/break.scm index f45697e..bdc0390 100644 --- a/gash/built-ins/break.scm +++ b/gash/built-ins/break.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/cd.scm b/gash/built-ins/cd.scm index 39c61d7..57cab88 100644 --- a/gash/built-ins/cd.scm +++ b/gash/built-ins/cd.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/colon.scm b/gash/built-ins/colon.scm index b1ce56d..2e2d7ec 100644 --- a/gash/built-ins/colon.scm +++ b/gash/built-ins/colon.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/continue.scm b/gash/built-ins/continue.scm index 37c55dc..a94deca 100644 --- a/gash/built-ins/continue.scm +++ b/gash/built-ins/continue.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/dot.scm b/gash/built-ins/dot.scm index 300109b..5b00a93 100644 --- a/gash/built-ins/dot.scm +++ b/gash/built-ins/dot.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/echo.scm b/gash/built-ins/echo.scm index 0eb8fa6..ffdb5fe 100644 --- a/gash/built-ins/echo.scm +++ b/gash/built-ins/echo.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/eval.scm b/gash/built-ins/eval.scm index 98bc2e2..e9793b0 100644 --- a/gash/built-ins/eval.scm +++ b/gash/built-ins/eval.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/exec.scm b/gash/built-ins/exec.scm index cd1664b..53d14d0 100644 --- a/gash/built-ins/exec.scm +++ b/gash/built-ins/exec.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/exit.scm b/gash/built-ins/exit.scm index ccc6626..c97e31a 100644 --- a/gash/built-ins/exit.scm +++ b/gash/built-ins/exit.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/export.scm b/gash/built-ins/export.scm index ad33a7c..f166773 100644 --- a/gash/built-ins/export.scm +++ b/gash/built-ins/export.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/false.scm b/gash/built-ins/false.scm index fea8087..7140c73 100644 --- a/gash/built-ins/false.scm +++ b/gash/built-ins/false.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/pwd.scm b/gash/built-ins/pwd.scm index 75e8ccb..a1abc32 100644 --- a/gash/built-ins/pwd.scm +++ b/gash/built-ins/pwd.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/read.scm b/gash/built-ins/read.scm index d7f58b9..d08620b 100644 --- a/gash/built-ins/read.scm +++ b/gash/built-ins/read.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/readonly.scm b/gash/built-ins/readonly.scm index 2519edd..6a69156 100644 --- a/gash/built-ins/readonly.scm +++ b/gash/built-ins/readonly.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/return.scm b/gash/built-ins/return.scm index 5d54236..819e8d5 100644 --- a/gash/built-ins/return.scm +++ b/gash/built-ins/return.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/set.scm b/gash/built-ins/set.scm index 8d6e5e9..e662122 100644 --- a/gash/built-ins/set.scm +++ b/gash/built-ins/set.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/shift.scm b/gash/built-ins/shift.scm index f4dc8df..b65ff7f 100644 --- a/gash/built-ins/shift.scm +++ b/gash/built-ins/shift.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/trap.scm b/gash/built-ins/trap.scm index 886fae0..f4c19ae 100644 --- a/gash/built-ins/trap.scm +++ b/gash/built-ins/trap.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/true.scm b/gash/built-ins/true.scm index 2684a1f..678626d 100644 --- a/gash/built-ins/true.scm +++ b/gash/built-ins/true.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/umask.scm b/gash/built-ins/umask.scm index 61048b7..cb09f7d 100644 --- a/gash/built-ins/umask.scm +++ b/gash/built-ins/umask.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/unset.scm b/gash/built-ins/unset.scm index 56a0ec9..21e6f72 100644 --- a/gash/built-ins/unset.scm +++ b/gash/built-ins/unset.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/built-ins/utils.scm b/gash/built-ins/utils.scm index 93aa1dd..08e0705 100644 --- a/gash/built-ins/utils.scm +++ b/gash/built-ins/utils.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018, 2019 Timothy Sample +;;; Copyright © 2018, 2019 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/environment.scm b/gash/environment.scm index 2e31f8b..85d46f1 100644 --- a/gash/environment.scm +++ b/gash/environment.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/eval.scm b/gash/eval.scm index 7fdf27d..50fce35 100644 --- a/gash/eval.scm +++ b/gash/eval.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/lexer.scm b/gash/lexer.scm index 7d429c9..7a07467 100644 --- a/gash/lexer.scm +++ b/gash/lexer.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2017, 2018 Timothy Sample +;;; Copyright © 2017, 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/parser.scm b/gash/parser.scm index 4d629a0..d86a7b3 100644 --- a/gash/parser.scm +++ b/gash/parser.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/repl.scm b/gash/repl.scm index afda9e7..7979cb0 100644 --- a/gash/repl.scm +++ b/gash/repl.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2017, 2018 Timothy Sample +;;; Copyright © 2017, 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/gash/word.scm b/gash/word.scm index 3cdc163..1d8d57e 100644 --- a/gash/word.scm +++ b/gash/word.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/tests/unit/automake.scm b/tests/unit/automake.scm index 148fb9a..0669922 100644 --- a/tests/unit/automake.scm +++ b/tests/unit/automake.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2017 Timothy Sample +;;; Copyright © 2017 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/tests/unit/lexer.scm b/tests/unit/lexer.scm index 70de9cf..713876f 100644 --- a/tests/unit/lexer.scm +++ b/tests/unit/lexer.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2017, 2018 Timothy Sample +;;; Copyright © 2017, 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/tests/unit/parser.scm b/tests/unit/parser.scm index 4f5aeb1..a19b5de 100644 --- a/tests/unit/parser.scm +++ b/tests/unit/parser.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/tests/unit/pattern.scm b/tests/unit/pattern.scm index bf9aefa..a31206b 100644 --- a/tests/unit/pattern.scm +++ b/tests/unit/pattern.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/tests/unit/shell.scm b/tests/unit/shell.scm index c55fb05..3042198 100644 --- a/tests/unit/shell.scm +++ b/tests/unit/shell.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/tests/unit/word.scm b/tests/unit/word.scm index b418a36..afa0d20 100644 --- a/tests/unit/word.scm +++ b/tests/unit/word.scm @@ -1,5 +1,5 @@ ;;; Gash -- Guile As SHell -;;; Copyright 2018 Timothy Sample +;;; Copyright © 2018 Timothy Sample ;;; ;;; This file is part of Gash. ;;; diff --git a/tools/coverage.in b/tools/coverage.in index ccc3de6..67dca02 100644 --- a/tools/coverage.in +++ b/tools/coverage.in @@ -3,7 +3,7 @@ !# ;;; Gash -- Guile As SHell -;;; Copyright 2017 Timothy Sample +;;; Copyright © 2017 Timothy Sample ;;; ;;; This file is part of Gash. ;;;