comparison liboctave/numeric/LSODE.cc @ 27923:bd51beb6205e

update formatting of copyright notices * Use <https://octave.org/copyright/> instead of <https://octave.org/COPYRIGHT.html/>. * For consistency with other comments in the Octave sources, use C++-style comments for copyright blocks in C and C++ files. * Use delimiters above and below copyright blocks that are appropriate for the language used in the file. * Eliminate extra spacing inside copyright blocks. * lex.ll (looks_like_copyright): Also allow newlines and carriage returns before the word "Copyright". * scripts/mk-doc.pl (gethelp): Also skip empty comment lines. * bp-table.cc, type.m: Adjust tests.
author John W. Eaton <jwe@octave.org>
date Wed, 08 Jan 2020 11:59:41 -0500
parents 1891570abac8
children 0a5b15007766
comparison
equal deleted inserted replaced
27922:a7c8d2d72120 27923:bd51beb6205e
1 /* 1 ////////////////////////////////////////////////////////////////////////
2 2 //
3 Copyright (C) 1993-2020 The Octave Project Developers 3 // Copyright (C) 1993-2020 The Octave Project Developers
4 4 //
5 See the file COPYRIGHT.md in the top-level directory of this distribution 5 // See the file COPYRIGHT.md in the top-level directory of this
6 or <https://octave.org/COPYRIGHT.html/>. 6 // distribution or <https://octave.org/copyright/>.
7 7 //
8 8 // This file is part of Octave.
9 This file is part of Octave. 9 //
10 10 // Octave is free software: you can redistribute it and/or modify it
11 Octave is free software: you can redistribute it and/or modify it 11 // under the terms of the GNU General Public License as published by
12 under the terms of the GNU General Public License as published by 12 // the Free Software Foundation, either version 3 of the License, or
13 the Free Software Foundation, either version 3 of the License, or 13 // (at your option) any later version.
14 (at your option) any later version. 14 //
15 15 // Octave is distributed in the hope that it will be useful, but
16 Octave is distributed in the hope that it will be useful, but 16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 WITHOUT ANY WARRANTY; without even the implied warranty of 17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 // GNU General Public License for more details.
19 GNU General Public License for more details. 19 //
20 20 // You should have received a copy of the GNU General Public License
21 You should have received a copy of the GNU General Public License 21 // along with Octave; see the file COPYING. If not, see
22 along with Octave; see the file COPYING. If not, see 22 // <https://www.gnu.org/licenses/>.
23 <https://www.gnu.org/licenses/>. 23 //
24 24 ////////////////////////////////////////////////////////////////////////
25 */
26 25
27 #if defined (HAVE_CONFIG_H) 26 #if defined (HAVE_CONFIG_H)
28 # include "config.h" 27 # include "config.h"
29 #endif 28 #endif
30 29