From f953374dba315b458d0ed8983c4c3393cc7db8b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Tue, 16 Apr 2019 14:30:37 +0200 Subject: [PATCH] More Unicode copyright symbol --- configure.ac | 2 +- dynare++/parser/cc/assign.yy | 2 +- dynare++/parser/cc/csv.ll | 2 +- dynare++/parser/cc/formula.yy | 2 +- dynare++/parser/cc/matrix.ll | 2 +- dynare++/parser/cc/matrix.yy | 2 +- dynare++/parser/cc/namelist.yy | 2 +- dynare++/src/dynglob.yy | 2 +- julia/Dynare.jl | 2 +- julia/DynareModel.jl | 2 +- julia/DynareOptions.jl | 2 +- julia/DynareOutput.jl | 2 +- julia/PerfectForesightModelSolver.jl | 2 +- julia/SteadyState.jl | 2 +- julia/Utils.jl | 2 +- m4/ax_cxx11_thread.m4 | 2 +- m4/ax_gsl.m4 | 2 +- m4/ax_latex_class.m4 | 4 ++-- m4/ax_latex_test.m4 | 4 ++-- m4/ax_matio.m4 | 2 +- m4/ax_matlab.m4 | 4 ++-- m4/ax_matlab_arch.m4 | 4 ++-- m4/ax_matlab_batch_options.m4 | 2 +- m4/ax_matlab_version.m4 | 2 +- m4/ax_mexext.m4 | 4 ++-- m4/ax_mexopts.m4 | 2 +- m4/ax_prog_ln_s.m4 | 2 +- m4/ax_slicot.m4 | 2 +- m4/ax_tex_test.m4 | 4 ++-- mex/build/matlab/configure.ac | 2 +- mex/build/octave/configure.ac | 2 +- scripts/diffFuncNames.py | 2 +- scripts/dynare.el | 4 ++-- scripts/functionDifferences.py | 2 +- 34 files changed, 41 insertions(+), 41 deletions(-) diff --git a/configure.ac b/configure.ac index 3e59161da0..da5251ca8c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -dnl Copyright (C) 2009-2018 Dynare Team +dnl Copyright © 2009-2018 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/dynare++/parser/cc/assign.yy b/dynare++/parser/cc/assign.yy index 60203f7c2e..e815506515 100644 --- a/dynare++/parser/cc/assign.yy +++ b/dynare++/parser/cc/assign.yy @@ -1,6 +1,6 @@ // -*- C++ -*- %{ -/* Copyright (C) 2006-2011, Ondra Kamenik */ +/* Copyright © 2006-2011, Ondra Kamenik */ #include "location.hh" #include "atom_assignings.hh" diff --git a/dynare++/parser/cc/csv.ll b/dynare++/parser/cc/csv.ll index 030f30d616..a4bd9facdc 100644 --- a/dynare++/parser/cc/csv.ll +++ b/dynare++/parser/cc/csv.ll @@ -1,6 +1,6 @@ /* -*- C++ -*- */ %{ -// Copyright (C) 2007-2011, Ondra Kamenik +// Copyright © 2007-2011, Ondra Kamenik #include "location.hh" #include "csv_tab.hh" diff --git a/dynare++/parser/cc/formula.yy b/dynare++/parser/cc/formula.yy index 8d2e38be0e..14d81beeeb 100644 --- a/dynare++/parser/cc/formula.yy +++ b/dynare++/parser/cc/formula.yy @@ -1,6 +1,6 @@ // -*- C++ -*- %{ -/* Copyright (C) 2006-2011, Ondra Kamenik */ +/* Copyright © 2006-2011, Ondra Kamenik */ #include <cstdio> diff --git a/dynare++/parser/cc/matrix.ll b/dynare++/parser/cc/matrix.ll index 107395fdad..8fe0cef0a8 100644 --- a/dynare++/parser/cc/matrix.ll +++ b/dynare++/parser/cc/matrix.ll @@ -1,6 +1,6 @@ /* -*- C++ -*- */ %{ -// Copyright (C) 2006-2011, Ondra Kamenik +// Copyright © 2006-2011, Ondra Kamenik #include "location.hh" #include "matrix_tab.hh" diff --git a/dynare++/parser/cc/matrix.yy b/dynare++/parser/cc/matrix.yy index 7b97caeb27..bb23559d9c 100644 --- a/dynare++/parser/cc/matrix.yy +++ b/dynare++/parser/cc/matrix.yy @@ -1,5 +1,5 @@ // -*- C++ -*- -// Copyright (C) 2006-2011, Ondra Kamenik +// Copyright © 2006-2011, Ondra Kamenik %{ #include "location.hh" diff --git a/dynare++/parser/cc/namelist.yy b/dynare++/parser/cc/namelist.yy index 838a57d5f1..43dbdcfa1b 100644 --- a/dynare++/parser/cc/namelist.yy +++ b/dynare++/parser/cc/namelist.yy @@ -1,5 +1,5 @@ // -*- C++ -*- -// Copyright (C) 2007-2011, Ondra Kamenik +// Copyright © 2007-2011, Ondra Kamenik %{ #include "location.hh" diff --git a/dynare++/src/dynglob.yy b/dynare++/src/dynglob.yy index eef99092ba..5a06eccc6b 100644 --- a/dynare++/src/dynglob.yy +++ b/dynare++/src/dynglob.yy @@ -1,6 +1,6 @@ // -*- C++ -*- %{ -// Copyright (C) 2006-2011, Ondra Kamenik +// Copyright © 2006-2011, Ondra Kamenik #include "parser/cc/location.hh" #include "dynare_model.hh" diff --git a/julia/Dynare.jl b/julia/Dynare.jl index 751d19f728..ce24db7d26 100644 --- a/julia/Dynare.jl +++ b/julia/Dynare.jl @@ -1,7 +1,7 @@ module Dynare ## - # Copyright (C) 2015-2016 Dynare Team + # Copyright © 2015-2016 Dynare Team # # This file is part of Dynare. # diff --git a/julia/DynareModel.jl b/julia/DynareModel.jl index 8d2d3a94a8..c2c5f46e14 100644 --- a/julia/DynareModel.jl +++ b/julia/DynareModel.jl @@ -1,6 +1,6 @@ module DynareModel ## - # Copyright (C) 2015-2018 Dynare Team + # Copyright © 2015-2018 Dynare Team # # This file is part of Dynare. # diff --git a/julia/DynareOptions.jl b/julia/DynareOptions.jl index 9e32bde2db..226764e64c 100644 --- a/julia/DynareOptions.jl +++ b/julia/DynareOptions.jl @@ -1,6 +1,6 @@ module DynareOptions ## - # Copyright (C) 2015 Dynare Team + # Copyright © 2015 Dynare Team # # This file is part of Dynare. # diff --git a/julia/DynareOutput.jl b/julia/DynareOutput.jl index 7adc456ed9..9227267da0 100644 --- a/julia/DynareOutput.jl +++ b/julia/DynareOutput.jl @@ -1,6 +1,6 @@ module DynareOutput ## - # Copyright (C) 2015-2018 Dynare Team + # Copyright © 2015-2018 Dynare Team # # This file is part of Dynare. # diff --git a/julia/PerfectForesightModelSolver.jl b/julia/PerfectForesightModelSolver.jl index cab8a48071..2116b15836 100644 --- a/julia/PerfectForesightModelSolver.jl +++ b/julia/PerfectForesightModelSolver.jl @@ -1,7 +1,7 @@ module PerfectForesightModelSolver ## - # Copyright (C) 2016 Dynare Team + # Copyright © 2016 Dynare Team # # This file is part of Dynare. # diff --git a/julia/SteadyState.jl b/julia/SteadyState.jl index ab68c52955..4c4cb30c5e 100644 --- a/julia/SteadyState.jl +++ b/julia/SteadyState.jl @@ -1,7 +1,7 @@ module SteadyState ## - # Copyright (C) 2016 Dynare Team + # Copyright © 2016 Dynare Team # # This file is part of Dynare. # diff --git a/julia/Utils.jl b/julia/Utils.jl index 6fd7eff531..6bd17a2f5e 100644 --- a/julia/Utils.jl +++ b/julia/Utils.jl @@ -1,6 +1,6 @@ module Utils ## - # Copyright (C) 2015 Dynare Team + # Copyright © 2015 Dynare Team # # This file is part of Dynare. # diff --git a/m4/ax_cxx11_thread.m4 b/m4/ax_cxx11_thread.m4 index 4fa2bb0852..65d557b63e 100644 --- a/m4/ax_cxx11_thread.m4 +++ b/m4/ax_cxx11_thread.m4 @@ -1,6 +1,6 @@ dnl Adds flags needed to compile programs using C++11 threads -dnl Copyright (C) 2019 Dynare Team +dnl Copyright © 2019 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/m4/ax_gsl.m4 b/m4/ax_gsl.m4 index 71a5ca6ffd..38c533dcc5 100644 --- a/m4/ax_gsl.m4 +++ b/m4/ax_gsl.m4 @@ -2,7 +2,7 @@ dnl Detect GSL. dnl We don't use the official M4 macro since it relies on the script gsl-config, dnl which does not work when cross-compiling. dnl -dnl Copyright (C) 2010-2012 Dynare Team +dnl Copyright © 2010-2012 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/m4/ax_latex_class.m4 b/m4/ax_latex_class.m4 index 0c1a951923..0f4c881f21 100644 --- a/m4/ax_latex_class.m4 +++ b/m4/ax_latex_class.m4 @@ -20,8 +20,8 @@ # # LICENSE # -# Copyright (c) 2008 Boretti Mathieu <boretti@eig.unige.ch> -# Copyright (c) 2009 Dynare Team +# Copyright © 2008 Boretti Mathieu <boretti@eig.unige.ch> +# Copyright © 2009 Dynare Team # # This library is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by diff --git a/m4/ax_latex_test.m4 b/m4/ax_latex_test.m4 index 4d5b73a348..5a3d012fc1 100644 --- a/m4/ax_latex_test.m4 +++ b/m4/ax_latex_test.m4 @@ -22,8 +22,8 @@ # # LICENSE # -# Copyright (c) 2008 Boretti Mathieu <boretti@eig.unige.ch> -# Copyright (c) 2009 Dynare Team +# Copyright © 2008 Boretti Mathieu <boretti@eig.unige.ch> +# Copyright © 2009 Dynare Team # # This library is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by diff --git a/m4/ax_matio.m4 b/m4/ax_matio.m4 index bcbc017d41..34f2abfbd2 100644 --- a/m4/ax_matio.m4 +++ b/m4/ax_matio.m4 @@ -1,6 +1,6 @@ dnl Detect the MATIO Library. dnl -dnl Copyright (C) 2012-2014 Dynare Team +dnl Copyright © 2012-2014 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/m4/ax_matlab.m4 b/m4/ax_matlab.m4 index c451f1dfa9..32938c5085 100644 --- a/m4/ax_matlab.m4 +++ b/m4/ax_matlab.m4 @@ -1,7 +1,7 @@ dnl ax_matlab.m4 --- check for MATLAB. dnl -dnl Copyright (C) 2000--2003 Ralph Schleicher -dnl Copyright (C) 2009 Dynare Team +dnl Copyright © 2000-2003 Ralph Schleicher +dnl Copyright © 2009 Dynare Team dnl dnl This program is free software; you can redistribute it and/or dnl modify it under the terms of the GNU General Public License as diff --git a/m4/ax_matlab_arch.m4 b/m4/ax_matlab_arch.m4 index fca6b96edb..43f23f7a43 100644 --- a/m4/ax_matlab_arch.m4 +++ b/m4/ax_matlab_arch.m4 @@ -1,7 +1,7 @@ dnl matlabarch.m4 --- check for MATLAB machine architecture. dnl -dnl Copyright (C) 2002, 2003 Ralph Schleicher -dnl Copyright (C) 2009 Dynare Team +dnl Copyright © 2002, 2003 Ralph Schleicher +dnl Copyright © 2009 Dynare Team dnl dnl This program is free software; you can redistribute it and/or dnl modify it under the terms of the GNU General Public License as diff --git a/m4/ax_matlab_batch_options.m4 b/m4/ax_matlab_batch_options.m4 index 9949a479c8..a18b87163b 100644 --- a/m4/ax_matlab_batch_options.m4 +++ b/m4/ax_matlab_batch_options.m4 @@ -1,4 +1,4 @@ -dnl Copyright (C) 2019 Dynare Team +dnl Copyright © 2019 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/m4/ax_matlab_version.m4 b/m4/ax_matlab_version.m4 index c68982ed68..73d78caaac 100644 --- a/m4/ax_matlab_version.m4 +++ b/m4/ax_matlab_version.m4 @@ -1,4 +1,4 @@ -dnl Copyright (C) 2009-2016 Dynare Team +dnl Copyright © 2009-2016 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/m4/ax_mexext.m4 b/m4/ax_mexext.m4 index 6e43b9ceb4..b59e4696dd 100644 --- a/m4/ax_mexext.m4 +++ b/m4/ax_mexext.m4 @@ -1,7 +1,7 @@ dnl ax_mexext.m4 --- check for MEX-file suffix. dnl -dnl Copyright (C) 2000--2003 Ralph Schleicher -dnl Copyright (C) 2009 Dynare Team +dnl Copyright © 2000-2003 Ralph Schleicher +dnl Copyright © 2009 Dynare Team dnl dnl This program is free software; you can redistribute it and/or dnl modify it under the terms of the GNU General Public License as diff --git a/m4/ax_mexopts.m4 b/m4/ax_mexopts.m4 index fbcd08ebfe..a580042cf2 100644 --- a/m4/ax_mexopts.m4 +++ b/m4/ax_mexopts.m4 @@ -1,4 +1,4 @@ -dnl Copyright (C) 2009-2019 Dynare Team +dnl Copyright © 2009-2019 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/m4/ax_prog_ln_s.m4 b/m4/ax_prog_ln_s.m4 index d9477064dc..5857da9c10 100644 --- a/m4/ax_prog_ln_s.m4 +++ b/m4/ax_prog_ln_s.m4 @@ -1,4 +1,4 @@ -dnl Copyright (C) 2009-2010 Dynare Team +dnl Copyright © 2009-2010 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/m4/ax_slicot.m4 b/m4/ax_slicot.m4 index 4cc5f14361..6fa6e95c5e 100644 --- a/m4/ax_slicot.m4 +++ b/m4/ax_slicot.m4 @@ -5,7 +5,7 @@ dnl dnl AX_SLICOT([matlab]) dnl AX_SLICOT([octave]) dnl -dnl Copyright (C) 2012 Dynare Team +dnl Copyright © 2012 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/m4/ax_tex_test.m4 b/m4/ax_tex_test.m4 index c4d7d49bc0..323ebe55a6 100644 --- a/m4/ax_tex_test.m4 +++ b/m4/ax_tex_test.m4 @@ -24,8 +24,8 @@ # # LICENSE # -# Copyright (c) 2008 Boretti Mathieu <boretti@eig.unige.ch> -# Copyright (c) 2009 Dynare Team +# Copyright © 2008 Boretti Mathieu <boretti@eig.unige.ch> +# Copyright © 2009 Dynare Team # # This library is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by diff --git a/mex/build/matlab/configure.ac b/mex/build/matlab/configure.ac index ab17ac9846..fb32281b38 100644 --- a/mex/build/matlab/configure.ac +++ b/mex/build/matlab/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -dnl Copyright (C) 2009-2019 Dynare Team +dnl Copyright © 2009-2019 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/mex/build/octave/configure.ac b/mex/build/octave/configure.ac index 1145549c11..3071d55518 100644 --- a/mex/build/octave/configure.ac +++ b/mex/build/octave/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -dnl Copyright (C) 2009-2017 Dynare Team +dnl Copyright © 2009-2017 Dynare Team dnl dnl This file is part of Dynare. dnl diff --git a/scripts/diffFuncNames.py b/scripts/diffFuncNames.py index 14dc224ab2..121c0faf7d 100644 --- a/scripts/diffFuncNames.py +++ b/scripts/diffFuncNames.py @@ -6,7 +6,7 @@ ## ## -## Copyright (C) 2012 Dynare Team +## Copyright © 2012 Dynare Team ## ## This file is part of Dynare. ## diff --git a/scripts/dynare.el b/scripts/dynare.el index 9ae456fec9..aec37fe776 100644 --- a/scripts/dynare.el +++ b/scripts/dynare.el @@ -1,7 +1,7 @@ ;;; dynare.el --- major mode for editing Dynare mod files -;; Copyright (C) 2010 Yannick Kalantzis -;; Copyright (C) 2019 Dynare Team +;; Copyright © 2010 Yannick Kalantzis +;; Copyright © 2019 Dynare Team ;; ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by diff --git a/scripts/functionDifferences.py b/scripts/functionDifferences.py index 0679087ef6..29d03ddb7d 100644 --- a/scripts/functionDifferences.py +++ b/scripts/functionDifferences.py @@ -10,7 +10,7 @@ ## ## -## Copyright (C) 2012 Dynare Team +## Copyright © 2012 Dynare Team ## ## This file is part of Dynare. ## -- GitLab