Mercurial > hg > octave-nkf
comparison liboctave/util/kpse.cc @ 16768:e2de3c8882be
copyright notice fixes
* libgui/src/color-picker.cc, libgui/src/color-picker.h,
libgui/src/m-editor/octave-qscintilla.cc,
libgui/src/m-editor/octave-qscintilla.h, libgui/src/qtinfo/parser.cc,
libgui/src/qtinfo/parser.h, libgui/src/qtinfo/webinfo.cc,
libgui/src/qtinfo/webinfo.h, libinterp/corefcn/ellipj.cc,
libinterp/interp-core/jit-ir.cc, libinterp/interp-core/jit-ir.h,
libinterp/interp-core/jit-typeinfo.cc,
libinterp/interp-core/jit-typeinfo.h,
libinterp/interp-core/jit-util.cc, libinterp/interp-core/jit-util.h,
libinterp/interp-core/pt-jit.cc, libinterp/interp-core/pt-jit.h,
libinterp/template-inst/Array-jit.cc, liboctave/numeric/bsxfun.h,
liboctave/util/kpse.cc, scripts/image/imfinfo.m,
scripts/image/imread.m, scripts/io/importdata.m,
scripts/io/textscan.m, scripts/java/usejava.m,
scripts/linear-algebra/logm.m, scripts/sparse/bicg.m,
scripts/specfun/ellipke.m, scripts/specfun/expint.m,
scripts/strings/strjoin.m: List email addresses in Author: lines.
Update copyright notices to use web address for FSF.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 18 Jun 2013 06:39:12 -0400 |
parents | 0723ea02dcdb |
children | d63878346099 |
comparison
equal
deleted
inserted
replaced
16767:47fbafc6e8e2 | 16768:e2de3c8882be |
---|---|
5 | 5 |
6 Copyright (C) 1993, 94, 95, 96, 97, 98 Karl Berry. | 6 Copyright (C) 1993, 94, 95, 96, 97, 98 Karl Berry. |
7 Copyright (C) 1993, 94, 95, 96, 97 Karl Berry & O. Weber. | 7 Copyright (C) 1993, 94, 95, 96, 97 Karl Berry & O. Weber. |
8 Copyright (C) 1992, 93, 94, 95, 96, 97 Free Software Foundation, Inc. | 8 Copyright (C) 1992, 93, 94, 95, 96, 97 Free Software Foundation, Inc. |
9 | 9 |
10 This library is free software; you can redistribute it and/or | 10 This file is part of Octave. |
11 modify it under the terms of the GNU Library General Public | 11 |
12 License as published by the Free Software Foundation; either | 12 Octave is free software; you can redistribute it and/or modify it |
13 version 2 of the License, or (at your option) any later version. | 13 under the terms of the GNU General Public License as published by the |
14 | 14 Free Software Foundation; either version 3 of the License, or (at your |
15 This library is distributed in the hope that it will be useful, | 15 option) any later version. |
16 but WITHOUT ANY WARRANTY; without even the implied warranty of | 16 |
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 17 Octave is distributed in the hope that it will be useful, but WITHOUT |
18 Library General Public License for more details. | 18 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
19 | 19 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
20 You should have received a copy of the GNU Library General Public | 20 for more details. |
21 License along with this library; if not, write to the Free Software | 21 |
22 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | 22 You should have received a copy of the GNU General Public License |
23 02110-1301, USA. */ | 23 along with Octave; see the file COPYING. If not, see |
24 <http://www.gnu.org/licenses/>. | |
25 | |
26 */ | |
24 | 27 |
25 #if defined (HAVE_CONFIG_H) | 28 #if defined (HAVE_CONFIG_H) |
26 #include <config.h> | 29 #include <config.h> |
27 #endif | 30 #endif |
28 | 31 |
1475 | 1478 |
1476 return ret; | 1479 return ret; |
1477 } | 1480 } |
1478 | 1481 |
1479 /* braces.c -- code for doing word expansion in curly braces. Taken from | 1482 /* braces.c -- code for doing word expansion in curly braces. Taken from |
1480 bash 1.14.5. [Ans subsequently modified for kpatshea.] | 1483 bash 1.14.5. [And subsequently modified for kpatshea.] |
1481 | 1484 |
1482 Copyright (C) 1987,1991 Free Software Foundation, Inc. | 1485 Copyright (C) 1987,1991 Free Software Foundation, Inc. */ |
1483 | |
1484 This program is free software; you can redistribute it and/or modify it | |
1485 under the terms of the GNU General Public License as published by | |
1486 the Free Software Foundation; either version 1, or (at your option) | |
1487 any later version. | |
1488 | |
1489 This program is distributed in the hope that it will be useful, but | |
1490 WITHOUT ANY WARRANTY; without even the implied warranty of | |
1491 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
1492 General Public License for more details. | |
1493 | |
1494 You should have received a copy of the GNU General Public License | |
1495 along with this program; see the file COPYING. If not, write to the | |
1496 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | |
1497 MA 02110-1301, USA. */ | |
1498 | 1486 |
1499 #define brace_whitespace(c) (! (c) || (c) == ' ' || (c) == '\t' || (c) == '\n') | 1487 #define brace_whitespace(c) (! (c) || (c) == ' ' || (c) == '\t' || (c) == '\n') |
1500 | 1488 |
1501 /* Basic idea: | 1489 /* Basic idea: |
1502 | 1490 |