]> Creatis software - CreaPhase.git/blob - octave_packages/m/help/private/__additional_help_message__.m
update packages
[CreaPhase.git] / octave_packages / m / help / private / __additional_help_message__.m
1 ## Copyright (C) 2009-2012 Søren Hauberg
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} {} __additional_help_message__ ()
21 ## Undocumented internal function.
22 ## @end deftypefn
23
24 function msg = __additional_help_message__ ()
25
26   if (suppress_verbose_help_message ())
27     msg = "";
28   else
29     msg = "\
30 Additional help for built-in functions and operators is\n\
31 available in the on-line version of the manual.  Use the command\n\
32 `doc <topic>' to search the manual index.\n\
33 \n\
34 Help and information about Octave is also available on the WWW\n\
35 at http://www.octave.org and via the help@octave.org\n\
36 mailing list.\n";
37   endif
38
39 endfunction