]> Creatis software - CreaPhase.git/blob - octave_packages/m/miscellaneous/bug_report.m
update packages
[CreaPhase.git] / octave_packages / m / miscellaneous / bug_report.m
1 ## Copyright (C) 1994-2012 John W. Eaton
2 ##
3 ## This file is part of Octave.
4 ##
5 ## Octave is free software; you can redistribute it and/or modify it
6 ## under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 3 of the License, or (at
8 ## your option) any later version.
9 ##
10 ## Octave is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING.  If not, see
17 ## <http://www.gnu.org/licenses/>.
18
19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {} bug_report ()
21 ## Display information about how to submit bug reports for Octave.
22 ## @end deftypefn
23
24 ## Author: jwe
25
26 function bug_report ()
27
28   puts ("\n");
29   puts ("  Bug reports play an essential role in making Octave\n");
30   puts ("  reliable.  Please use the Octave bug tracker at\n");
31   puts ("\n");
32   puts ("    http://bugs.octave.org\n");
33   puts ("\n");
34   puts ("  to report problems.\n");
35   puts ("\n");
36   puts ("  Please also read the bug reporting guidelines at\n");
37   puts ("\n");
38   puts ("    http://www.octave.org/bugs.html\n");
39   puts ("\n");
40   puts ("  to learn how to submit useful bug reports that will\n");
41   puts ("  help the Octave community diagnose and fix the problem\n");
42   puts ("  quickly and efficiently.\n");
43   puts ("\n");
44
45 endfunction
46
47 ## Mark file as being tested.  No real test needed for this function.
48 %!assert (1)